No reason to have migration_number optional or default to None

This commit is contained in:
Christopher Allan Webber 2011-07-10 18:48:09 -05:00
parent 77ab4b66ce
commit 0143c5a1e4

View File

@ -188,7 +188,7 @@ class MigrationManager(object):
# If no migrations have been set, we start at 0.
return 0
def set_current_migration(self, migration_number=None):
def set_current_migration(self, migration_number):
"""
Set the migration in the database to migration_number
"""