Skip to content

Commit

Permalink
Fix SyntaxError
Browse files Browse the repository at this point in the history
  • Loading branch information
thomwiggers authored and lamby committed Jan 16, 2017
1 parent 72c4069 commit ef2b06c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_slack/templatetags/django_slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

try:
from django.utils.functional import keep_lazy as allow_lazy
except ImportError
except ImportError:
from django.utils.functional import allow_lazy

register = template.Library()
Expand Down

0 comments on commit ef2b06c

Please sign in to comment.