diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-12 14:38:43 -0800 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-03-26 11:39:07 -0700 |
commit | 385b5b44f5fb8b68f75f991e3259b395fe628d20 (patch) | |
tree | d27ecd22ce0b538ee68f5ade22f517d51f4ac1e0 /mediagoblin/gmg_commands | |
parent | 406058b3405cbf626a27458d2a97887bc48cb603 (diff) | |
download | mediagoblin-385b5b44f5fb8b68f75f991e3259b395fe628d20.tar.lz mediagoblin-385b5b44f5fb8b68f75f991e3259b395fe628d20.tar.xz mediagoblin-385b5b44f5fb8b68f75f991e3259b395fe628d20.zip |
Removing erronously installed print statement.
* mediagoblin/gmg_commands/alembic_commands.py (FudgedCommandLine.main):
Removed call to print.
Diffstat (limited to 'mediagoblin/gmg_commands')
-rw-r--r-- | mediagoblin/gmg_commands/alembic_commands.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mediagoblin/gmg_commands/alembic_commands.py b/mediagoblin/gmg_commands/alembic_commands.py index dc679f22..4e73ec13 100644 --- a/mediagoblin/gmg_commands/alembic_commands.py +++ b/mediagoblin/gmg_commands/alembic_commands.py @@ -34,7 +34,6 @@ class FudgedCommandLine(config.CommandLine): if args.with_plugins: plugins = global_config.get('plugins', {}).keys() for plugin in plugins: - print(plugin) try: import_component('{0}.models:MODELS'.format(plugin)) except ImportError: |