diff -r da414906fe21 -r bb40b6db0a58 scripts/chg-len.py --- a/scripts/chg-len.py Fri Sep 26 12:40:11 2008 +0200 +++ b/scripts/chg-len.py Sat Sep 27 14:33:28 2008 +0200 @@ -9,13 +9,14 @@ in the revision graph from revison 0 to the current one. """ exit(0) -plist = os.popen("hg parents --template='{rev}\n'").readlines() +plist = os.popen("HGRCPATH='' hg parents --template='{rev}\n'").readlines() if len(plist)>1: print "You are in the process of merging" exit(1) PAR = int(plist[0]) -f = os.popen("hg log -r 0:tip --template='{rev} {parents}\n'").readlines() +f = os.popen("HGRCPATH='' hg log -r 0:tip --template='{rev} {parents}\n'").\ + readlines() REV = -1 lengths=[] for l in f: