Removing erronously installed print statement.

* mediagoblin/gmg_commands/alembic_commands.py (FudgedCommandLine.main):
  Removed call to print.
This commit is contained in:
Christopher Allan Webber 2016-03-12 14:38:43 -08:00
parent 406058b340
commit 385b5b44f5

View File

@ -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: