diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-01-02 16:08:32 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-01-29 16:33:45 -0600 |
commit | 3f2c6f96c191eb89f1c6ec7c903219b445f410a0 (patch) | |
tree | d4a860962075c45fb51a012fcaa814c37a3a0ea9 | |
parent | dc5da0f891895c79f29be05df1e14035b080dcdc (diff) | |
download | mediagoblin-3f2c6f96c191eb89f1c6ec7c903219b445f410a0.tar.lz mediagoblin-3f2c6f96c191eb89f1c6ec7c903219b445f410a0.tar.xz mediagoblin-3f2c6f96c191eb89f1c6ec7c903219b445f410a0.zip |
No need for self here (thanks again Elrond ;))
-rw-r--r-- | mediagoblin/gmg_commands/dbupdate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/gmg_commands/dbupdate.py b/mediagoblin/gmg_commands/dbupdate.py index 52819c6d..1fc5121a 100644 --- a/mediagoblin/gmg_commands/dbupdate.py +++ b/mediagoblin/gmg_commands/dbupdate.py @@ -32,7 +32,7 @@ class DatabaseData(object): self.name, self.models, self.migrations, db) -def gather_database_data(self, media_types): +def gather_database_data(media_types): """ Gather all database data relevant to the extensions we have installed so we can do migrations and table initialization. |