From 696dab8dacad39c9227772e51820fab0c9585f64 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 19 Sep 2016 23:15:38 +0100 Subject: trivial: Use implicit true/false for comparison Signed-off-by: Stephen Finucane Reviewed-by: Daniel Axtens --- patchwork/templatetags/listurl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'patchwork/templatetags') 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 = {} -- cgit v1.2.3