Mercurial > public > mercurial-scm > hg-stable
diff mercurial/extensions.py @ 6204:f8a86ea7521b
When failing to load an extension, show where Hg tried to load it from.
author | Jesse Glick <jesse.glick@sun.com> |
---|---|
date | Mon, 03 Mar 2008 12:46:57 -0500 |
parents | b12432b1c2c7 |
children | e75aab656f46 |
line wrap: on
line diff
--- a/mercurial/extensions.py Sun Mar 02 23:32:13 2008 +0100 +++ b/mercurial/extensions.py Mon Mar 03 12:46:57 2008 -0500 @@ -78,8 +78,12 @@ except (util.SignalInterrupt, KeyboardInterrupt): raise except Exception, inst: - ui.warn(_("*** failed to import extension %s: %s\n") % - (name, inst)) + if path: + ui.warn(_("*** failed to import extension %s from %s: %s\n") + % (name, path, inst)) + else: + ui.warn(_("*** failed to import extension %s: %s\n") + % (name, inst)) if ui.print_exc(): return 1