remove unnecessary print
authorRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Thu, 3 Jun 2010 23:48:03 +0000 (01:48 +0200)
committerRadek Czajka <radoslaw.czajka@nowoczesnapolska.org.pl>
Thu, 3 Jun 2010 23:48:03 +0000 (01:48 +0200)
apps/catalogue/views.py

index 7f37ccb..b3541a8 100644 (file)
@@ -244,7 +244,6 @@ def _word_starts_with(name, prefix):
     # can't use [[:<:]] (word start), 
     # but we want both `xy` and `(xy` to catch `(xyz)`
     kwargs['%s__iregex' % name] = u"(^|[^[:alnum:]_])%s" % prefix
-    print kwargs['%s__iregex' % name]
 
     return Q(**kwargs)