# HG changeset patch # User Benoit Boissinot # Date 1153000925 -7200 # Node ID 70d65ca6d8938c92bbb255aecd2371af4045853a # Parent 46e52bbb9b1a7bf781e54b4bda576eb07a30fa7d mention the bts for bug reporting in traceback message diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -3499,7 +3499,9 @@ def dispatch(args): return inst.code except: u.warn(_("** unknown exception encountered, details follow\n")) - u.warn(_("** report bug details to mercurial@selenic.com\n")) + u.warn(_("** report bug details to " + "http://www.selenic.com/mercurial/bts\n")) + u.warn(_("** or mercurial@selenic.com\n")) u.warn(_("** Mercurial Distributed SCM (version %s)\n") % version.get_version()) raise