382
382
exec "import bzrlib.plugins.%s" % name in {}
383
383
except KeyboardInterrupt:
387
387
"Unable to load plugin %r. It requested API version "
388
388
"%s of module %s but the minimum exported version is %s, and "
390
390
(name, e.wanted, e.api, e.minimum, e.current))
391
391
record_plugin_warning(name, warning_message)
394
394
if re.search('\.|-| ', name):
395
395
sanitised_name = re.sub('[-. ]', '_', name)