diff options
author | Dan McGee <dan@archlinux.org> | 2010-11-27 13:12:11 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-11-27 13:12:11 -0600 |
commit | 8c1ae21e86a83a9f7b9ca1445b6d0d5c73a142b1 (patch) | |
tree | 7dcfc4f394b3c4096a8b7aa2cf2328f99e7b434f /devel/management | |
parent | fcc6d98bc438ea917c757ee1a565a5dba625f333 (diff) |
Remove print statement
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'devel/management')
-rw-r--r-- | devel/management/commands/reporead.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/devel/management/commands/reporead.py b/devel/management/commands/reporead.py index 6f7fd958..d8287ee0 100644 --- a/devel/management/commands/reporead.py +++ b/devel/management/commands/reporead.py @@ -139,7 +139,6 @@ def find_user(userstring): for token in name.split(): # ignore quoted parts; e.g. nicknames in strings if re.match(r'^[\'"].*[\'"]$', token): - print "token match:", token continue name_q &= (Q(first_name__icontains=token) | Q(last_name__icontains=token)) |