##// END OF EJS Templates
debuginstall: show directory for Python lib...
Adrian Buehlmann -
r17392:bdd24866 stable
parent child Browse files
Show More
@@ -1998,6 +1998,10 b' def debuginstall(ui):'
1998 1998 ui.write(_(" (check that your locale is properly set)\n"))
1999 1999 problems += 1
2000 2000
2001 # Python lib
2002 ui.status(_("checking Python lib (%s)...\n")
2003 % os.path.dirname(os.__file__))
2004
2001 2005 # compiled modules
2002 2006 ui.status(_("checking installed modules (%s)...\n")
2003 2007 % os.path.dirname(__file__))
@@ -1,6 +1,7 b''
1 1 hg debuginstall
2 2 $ hg debuginstall
3 3 checking encoding (ascii)...
4 checking Python lib (*lib*)... (glob)
4 5 checking installed modules (*mercurial)... (glob)
5 6 checking templates (*mercurial?templates)... (glob)
6 7 checking commit editor...
@@ -10,6 +11,7 b' hg debuginstall'
10 11 hg debuginstall with no username
11 12 $ HGUSER= hg debuginstall
12 13 checking encoding (ascii)...
14 checking Python lib (*lib*)... (glob)
13 15 checking installed modules (*mercurial)... (glob)
14 16 checking templates (*mercurial?templates)... (glob)
15 17 checking commit editor...
General Comments 0
You need to be logged in to leave comments. Login now