]> git.ozlabs.org Git - patchwork/blobdiff - apps/patchwork/templatetags/filter.py
In some places tabs are used instead of spaces for indentation,
[patchwork] / apps / patchwork / templatetags / filter.py
index b94059920a7ff66823d2bb979abd39ef2f4099d5..7a5d9dfa6ebe1bc744050beac6067558caf4e339 100644 (file)
@@ -28,9 +28,9 @@ register = template.Library()
 @register.filter
 def personify(person):
     if person.name:
-       linktext = escape(person.name)
+        linktext = escape(person.name)
     else:
-       linktext = escape(person.email)
+        linktext = escape(person.email)
 
     return '<a href="javascript:personpopup(\'%s\')">%s</a>' % (escape(person.email), linktext)