Mercurial > public > mercurial-scm > hg
diff mercurial/commands.py @ 12004:1fe4702fe2df
debuginstall: report installpath
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 20 Aug 2010 15:31:05 -0500 |
parents | 52ec5c813723 |
children | ad787252fed6 |
line wrap: on
line diff
--- a/mercurial/commands.py Fri Aug 20 18:26:20 2010 +0200 +++ b/mercurial/commands.py Fri Aug 20 15:31:05 2010 -0500 @@ -1286,9 +1286,10 @@ problems += 1 # compiled modules - ui.status(_("Checking extensions...\n")) + ui.status(_("Checking installed modules (%s)...\n") + % os.path.dirname(__file__)) try: - import bdiff, mpatch, base85 + import bdiff, mpatch, base85, osutil except Exception, inst: ui.write(" %s\n" % inst) ui.write(_(" One or more extensions could not be found"))