diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-07-12 14:16:47 -0500 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2013-07-12 14:16:47 -0500 |
commit | 003ea47499a3f4ed0be2d5ad49e7a0ce8bb62278 (patch) | |
tree | 95820dec09dc16cd9dd1d38c54059e4db331e270 | |
parent | c81186dd2e300664d36583e9003736213d5aa7e9 (diff) | |
download | mediagoblin-003ea47499a3f4ed0be2d5ad49e7a0ce8bb62278.tar.lz mediagoblin-003ea47499a3f4ed0be2d5ad49e7a0ce8bb62278.tar.xz mediagoblin-003ea47499a3f4ed0be2d5ad49e7a0ce8bb62278.zip |
Changing the information spat out while printing from media types->plugins
Previously it called even plugins media types. Ha!
This commit sponsored by Jon Merkley. Thank you!
-rw-r--r-- | mediagoblin/db/migration_tools.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mediagoblin/db/migration_tools.py b/mediagoblin/db/migration_tools.py index c0c7e998..aa22ef94 100644 --- a/mediagoblin/db/migration_tools.py +++ b/mediagoblin/db/migration_tools.py @@ -175,8 +175,7 @@ class MigrationManager(object): if self.name == u'__main__': return u"main mediagoblin tables" else: - # TODO: Use the friendlier media manager "human readable" name - return u'media type "%s"' % self.name + return u'plugin "%s"' % self.name def init_or_migrate(self): """ |