summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Hitchcock <adam.hitchcock@skype.net>2011-02-25 01:31:53 +0000
committerAdam Hitchcock <adam.hitchcock@skype.net>2011-02-25 01:31:53 +0000
commit05241a659fdf334223516b50908eba87ed9ab010 (patch)
tree6a2c9b7add776164bbf37b22859006c7bdafc393
parent8d6bb4697ba83a1017c013d9551eda6a93c89368 (diff)
downloadaskbot-05241a659fdf334223516b50908eba87ed9ab010.tar.gz
askbot-05241a659fdf334223516b50908eba87ed9ab010.tar.bz2
askbot-05241a659fdf334223516b50908eba87ed9ab010.zip
fix_question_tags.py
-rw-r--r--askbot/management/commands/fix_question_tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/management/commands/fix_question_tags.py b/askbot/management/commands/fix_question_tags.py
index fd2ac305..47fc4102 100644
--- a/askbot/management/commands/fix_question_tags.py
+++ b/askbot/management/commands/fix_question_tags.py
@@ -24,7 +24,7 @@ class Command(NoArgsCommand):
dupes = models.Tag.objects.filter(name__iexact = name)
first_tag = dupes[0]
if dupes.count() > 1:
- line 'Found duplicate tags for %s: ' % first_tag.name
+ line = 'Found duplicate tags for %s: ' % first_tag.name
print line,
for idx in xrange(1, dupes.count()):
print dupes[idx].name + ' ',