##// 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 ui.write(_(" (check that your locale is properly set)\n"))
1998 ui.write(_(" (check that your locale is properly set)\n"))
1999 problems += 1
1999 problems += 1
2000
2000
2001 # Python lib
2002 ui.status(_("checking Python lib (%s)...\n")
2003 % os.path.dirname(os.__file__))
2004
2001 # compiled modules
2005 # compiled modules
2002 ui.status(_("checking installed modules (%s)...\n")
2006 ui.status(_("checking installed modules (%s)...\n")
2003 % os.path.dirname(__file__))
2007 % os.path.dirname(__file__))
@@ -1,6 +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 Python lib (*lib*)... (glob)
4 checking installed modules (*mercurial)... (glob)
5 checking installed modules (*mercurial)... (glob)
5 checking templates (*mercurial?templates)... (glob)
6 checking templates (*mercurial?templates)... (glob)
6 checking commit editor...
7 checking commit editor...
@@ -10,6 +11,7 b' hg debuginstall'
10 hg debuginstall with no username
11 hg debuginstall with no username
11 $ HGUSER= hg debuginstall
12 $ HGUSER= hg debuginstall
12 checking encoding (ascii)...
13 checking encoding (ascii)...
14 checking Python lib (*lib*)... (glob)
13 checking installed modules (*mercurial)... (glob)
15 checking installed modules (*mercurial)... (glob)
14 checking templates (*mercurial?templates)... (glob)
16 checking templates (*mercurial?templates)... (glob)
15 checking commit editor...
17 checking commit editor...
General Comments 0
You need to be logged in to leave comments. Login now