From: jordan Date: Fri, 18 Mar 2011 20:10:27 +0000 (+0000) Subject: removing unnecessery line causing IndentationError in the log file. X-Git-Tag: live~405 X-Git-Url: https://git.openstreetmap.org./osqa.git/commitdiff_plain/ff9cf41fc82917f82e95d99eae1dd0077c1fa32b removing unnecessery line causing IndentationError in the log file. git-svn-id: http://svn.osqa.net/svnroot/osqa/trunk@864 0cfe37f9-358a-4d5e-be75-b63607b5c754 --- diff --git a/forum/migrations/0048_zero_count_tags_fix.py b/forum/migrations/0048_zero_count_tags_fix.py index 5413e3f..a56b320 100644 --- a/forum/migrations/0048_zero_count_tags_fix.py +++ b/forum/migrations/0048_zero_count_tags_fix.py @@ -5,7 +5,6 @@ from south.v2 import DataMigration from django.db import models class Migration(DataMigration): - def forwards(self, orm): for tag in orm.Tag.objects.filter(used_count__lt=1): # What we do is a check if there are some questions matching this tag. If there are -- the count is not 0.