diff options
Diffstat (limited to 'mediagoblin/db/util.py')
-rw-r--r-- | mediagoblin/db/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/util.py b/mediagoblin/db/util.py index 5a1b317d..3e52d8ce 100644 --- a/mediagoblin/db/util.py +++ b/mediagoblin/db/util.py @@ -173,7 +173,7 @@ class MigrationManager(object): with the 'current_migration', throw an error. """ if self.database_current_migration() is None: - MissingCurrentMigration( + raise MissingCurrentMigration( "Tried to call function which requires " "'current_migration' set in database") |