diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-01-01 11:47:39 -0600 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2012-01-29 16:33:45 -0600 |
commit | 4c86905789a4732af38c618ec0132d431f60b04d (patch) | |
tree | 7db4094c6bd5cc0c98622675574888b468fd6cd9 /mediagoblin/db/sql/util.py | |
parent | a315962f0db38ba89bdc38740709a6124e58557c (diff) | |
download | mediagoblin-4c86905789a4732af38c618ec0132d431f60b04d.tar.lz mediagoblin-4c86905789a4732af38c618ec0132d431f60b04d.tar.xz mediagoblin-4c86905789a4732af38c618ec0132d431f60b04d.zip |
Removing printer argument now that we use self.printer
Diffstat (limited to 'mediagoblin/db/sql/util.py')
-rw-r--r-- | mediagoblin/db/sql/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/sql/util.py b/mediagoblin/db/sql/util.py index 296c8b78..d4cbffea 100644 --- a/mediagoblin/db/sql/util.py +++ b/mediagoblin/db/sql/util.py @@ -146,7 +146,7 @@ class MigrationManager(object): # TODO: Use the friendlier media manager "human readable" name return u'media type "%s"' % self.name - def init_or_migrate(self, printer=_simple_printer): + def init_or_migrate(self): """ Initialize the database or migrate if appropriate. |