diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-09 17:21:47 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2011-07-09 17:21:47 -0500 |
commit | ec86d16a5376168127190aee36dfc8f3e559b527 (patch) | |
tree | bafeadac951335b957f560740cdc2c5b5e82281b /mediagoblin/db/util.py | |
parent | 363fc97259bac58b8b9a933cbdf301ab6cd584b3 (diff) | |
download | mediagoblin-ec86d16a5376168127190aee36dfc8f3e559b527.tar.lz mediagoblin-ec86d16a5376168127190aee36dfc8f3e559b527.tar.xz mediagoblin-ec86d16a5376168127190aee36dfc8f3e559b527.zip |
run_new_migrations() makes more sense
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 ca1aed74..5f0699c1 100644 --- a/mediagoblin/db/util.py +++ b/mediagoblin/db/util.py @@ -245,7 +245,7 @@ class MigrationManager(object): self.set_current_migration(migration_number) yield migration_number, migration_func - def run_outdated_migrations(self): + def run_new_migrations(self): """ Install all migrations that need to be installed, quietly. """ |