diff options
author | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-11-24 13:16:27 -0500 |
---|---|---|
committer | tilly-Q <nattilypigeonfowl@gmail.com> | 2013-11-24 13:16:27 -0500 |
commit | 11eb6a8b53ed2e1f9c1e1e1c5feec0902519ca18 (patch) | |
tree | 15459105dffa3993b077cc58a2f9b5db437a2c02 | |
parent | 9412fffef1fc7d07ff76c1614c56ff8bd0b1ecbc (diff) | |
parent | 844b6d70eacb5fd156301aec02cdd79dc7739ebe (diff) | |
download | mediagoblin-11eb6a8b53ed2e1f9c1e1e1c5feec0902519ca18.tar.lz mediagoblin-11eb6a8b53ed2e1f9c1e1e1c5feec0902519ca18.tar.xz mediagoblin-11eb6a8b53ed2e1f9c1e1e1c5feec0902519ca18.zip |
Merge branch 'fix-foundations-warn'
-rw-r--r-- | mediagoblin/gmg_commands/dbupdate.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mediagoblin/gmg_commands/dbupdate.py b/mediagoblin/gmg_commands/dbupdate.py index 961752f6..e14cd550 100644 --- a/mediagoblin/gmg_commands/dbupdate.py +++ b/mediagoblin/gmg_commands/dbupdate.py @@ -92,14 +92,8 @@ forgotten to add it? ({1})'.format(plugin, exc)) try: foundations = import_component('{0}.models:FOUNDATIONS'.format(plugin)) except ImportError as exc: - _log.debug('No foundations found for {0}: {1}'.format( - plugin, - exc)) - foundations = {} except AttributeError as exc: - _log.debug('Could not find FOUNDATIONS in {0}.models, have you \ -forgotten to add it? ({1})'.format(plugin, exc)) foundations = {} if models: |