cwconfig.py
branchstable
changeset 7815 2a164a9cf81c
parent 7691 c47dcd37d4e3
child 7822 ce8a4de2ecf1
--- a/cwconfig.py	Tue Sep 20 15:14:04 2011 +0200
+++ b/cwconfig.py	Wed Sep 21 17:38:00 2011 +0200
@@ -618,7 +618,7 @@
                 try:
                     __import__('cubes.%s.ccplugin' % cube)
                     cls.info('loaded cubicweb-ctl plugin from %s', cube)
-                except:
+                except Exception:
                     cls.exception('while loading plugin %s', pluginfile)
             elif exists(oldpluginfile):
                 warn('[3.6] %s: ecplugin module should be renamed to ccplugin' % cube,
@@ -626,12 +626,12 @@
                 try:
                     __import__('cubes.%s.ecplugin' % cube)
                     cls.info('loaded cubicweb-ctl plugin from %s', cube)
-                except:
+                except Exception:
                     cls.exception('while loading plugin %s', oldpluginfile)
             elif exists(initfile):
                 try:
                     __import__('cubes.%s' % cube)
-                except:
+                except Exception:
                     cls.exception('while loading cube %s', cube)
             else:
                 cls.warning('no __init__ file in cube %s', cube)