##// END OF EJS Templates
debuginstall: report installpath
Matt Mackall -
r12004:1fe4702f default
parent child Browse files
Show More
@@ -1286,9 +1286,10 b' def debuginstall(ui):'
1286 problems += 1
1286 problems += 1
1287
1287
1288 # compiled modules
1288 # compiled modules
1289 ui.status(_("Checking extensions...\n"))
1289 ui.status(_("Checking installed modules (%s)...\n")
1290 % os.path.dirname(__file__))
1290 try:
1291 try:
1291 import bdiff, mpatch, base85
1292 import bdiff, mpatch, base85, osutil
1292 except Exception, inst:
1293 except Exception, inst:
1293 ui.write(" %s\n" % inst)
1294 ui.write(" %s\n" % inst)
1294 ui.write(_(" One or more extensions could not be found"))
1295 ui.write(_(" One or more extensions could not be found"))
@@ -1,7 +1,7 b''
1 hg debuginstall
1 hg debuginstall
2 $ hg debuginstall
2 $ hg debuginstall
3 Checking encoding (ascii)...
3 Checking encoding (ascii)...
4 Checking extensions...
4 Checking installed modules \(.*/mercurial\)...
5 Checking templates...
5 Checking templates...
6 Checking patch...
6 Checking patch...
7 Checking commit editor...
7 Checking commit editor...
@@ -11,7 +11,7 b' hg debuginstall'
11 hg debuginstall with no username
11 hg debuginstall with no username
12 $ HGUSER= hg debuginstall
12 $ HGUSER= hg debuginstall
13 Checking encoding (ascii)...
13 Checking encoding (ascii)...
14 Checking extensions...
14 Checking installed modules \(.*/mercurial\)...
15 Checking templates...
15 Checking templates...
16 Checking patch...
16 Checking patch...
17 Checking commit editor...
17 Checking commit editor...
General Comments 0
You need to be logged in to leave comments. Login now