summaryrefslogtreecommitdiff
path: root/patchwork/templatetags/listurl.py
diff options
context:
space:
mode:
Diffstat (limited to 'patchwork/templatetags/listurl.py')
-rw-r--r--patchwork/templatetags/listurl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/patchwork/templatetags/listurl.py b/patchwork/templatetags/listurl.py
index cee6753..9d3b685 100644
--- a/patchwork/templatetags/listurl.py
+++ b/patchwork/templatetags/listurl.py
@@ -81,7 +81,7 @@ class ListURLNode(template.defaulttags.URLNode):
@register.tag
def listurl(parser, token):
bits = token.contents.split(' ', 1)
- if len(bits) < 1:
+ if not bits:
raise template.TemplateSyntaxError(
"'%s' takes at least one argument (path to a view)" % bits[0])
kwargs = {}