Browse Source

Fail loudly on fixtures load and provide traceback to exceptions occuring

Ralfp 12 years ago
parent
commit
8e6d7027e8
1 changed files with 0 additions and 6 deletions
  1. 0 6
      misago/utils/fixtures.py

+ 0 - 6
misago/utils/fixtures.py

@@ -18,9 +18,6 @@ def load_fixture(name):
         return True
     except (ImportError, AttributeError):
         return False
-    except Exception as e:
-        print 'Could not load fixtures from %s:\n%s' % (name, e)
-        return False
 
 
 def update_fixture(name):
@@ -33,9 +30,6 @@ def update_fixture(name):
         return True
     except (ImportError, AttributeError):
         return False
-    except Exception as e:
-        print 'Could not update fixture from %s:\n%s' % (name, e)
-        return False
 
 
 def load_settings_group_fixture(group, fixture):