From 003ea47499a3f4ed0be2d5ad49e7a0ce8bb62278 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Fri, 12 Jul 2013 14:16:47 -0500 Subject: [PATCH] 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! --- mediagoblin/db/migration_tools.py | 3 +-- 1 file changed, 1 insertion(+), 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): """ -- 2.25.1