From: Radek Czajka Date: Thu, 3 Jun 2010 23:48:03 +0000 (+0200) Subject: remove unnecessary print X-Git-Url: https://git.mdrn.pl/wolnelektury.git/commitdiff_plain/cd9bdc5c9d42da8a3b949223d40341a0d54e72b4 remove unnecessary print --- diff --git a/apps/catalogue/views.py b/apps/catalogue/views.py index 7f37ccbc2..b3541a869 100644 --- a/apps/catalogue/views.py +++ b/apps/catalogue/views.py @@ -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)