Previous commit affected whitespace in unrelated part of file; reverted and fixed to just change the nominations_accepted field.

This commit is contained in:
Victor Rajewski 2012-09-27 10:51:10 +10:00
Родитель 63a8105621
Коммит 0fdcd54324
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -353,7 +353,7 @@ class Badge(models.Model):
if badger_multiplayer: if badger_multiplayer:
# HACK: This belongs in the badger_multiplayer model, ugh # HACK: This belongs in the badger_multiplayer model, ugh
# https://github.com/lmorchard/django-badger/issues/15 # https://github.com/lmorchard/django-badger/issues/15
nominations_accepted = models.BooleanField(default=True, nominations_accepted = models.BooleanField(default=True, blank=True,
help_text="Should this badge accept nominations from " help_text="Should this badge accept nominations from "
"other users?") "other users?")