fix django 1.9 compatibility
authorJan Szejko <janek37@gmail.com>
Tue, 14 Feb 2017 13:32:00 +0000 (14:32 +0100)
committerJan Szejko <janek37@gmail.com>
Tue, 14 Feb 2017 13:32:00 +0000 (14:32 +0100)
.gitignore
fnpdjango/templatetags/macros.py

index 39ece65..06194e4 100644 (file)
@@ -14,6 +14,10 @@ dist
 .tox
 /htmlcov
 
+# PyCharm garbage
+.idea
+.pycharmrc
+
 # Mac OS X garbage
 .DS_Store
 
index 61b007d..647843d 100644 (file)
@@ -52,7 +52,7 @@ through {% extends ... %} tags.
 """
 
 from django import template
-from django.template import FilterExpression
+from django.template.base import FilterExpression
 from django.template.loader import get_template
 import re