##// END OF EJS Templates
honor signals during load of extensions.
Vadim Gelfer -
r2428:42b8a1ff default
parent child Browse files
Show More
@@ -3295,6 +3295,8 b' def dispatch(args):'
3295 except ImportError:
3295 except ImportError:
3296 mod = importh(x[0])
3296 mod = importh(x[0])
3297 external.append(mod)
3297 external.append(mod)
3298 except (util.SignalInterrupt, KeyboardInterrupt):
3299 raise
3298 except Exception, inst:
3300 except Exception, inst:
3299 u.warn(_("*** failed to import extension %s: %s\n") % (x[0], inst))
3301 u.warn(_("*** failed to import extension %s: %s\n") % (x[0], inst))
3300 if u.print_exc():
3302 if u.print_exc():
General Comments 0
You need to be logged in to leave comments. Login now