Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

setup: specify repository root for id lookup

prevents the discovery of a repository root in a parent directory

Changeset af15d90b2942

Parent e15ff3f61007

by Steve Borho

Changes to one file · Browse files at af15d90b2942 Showing diff from parent e15ff3f61007 Diff from another changeset...

Change 1 of 1 Show Entire File setup.py Stacked
 
113
114
115
116
 
117
118
119
 
113
114
115
 
116
117
118
119
@@ -113,7 +113,7 @@
  desc='TortoiseHg dialogs for Mercurial VCS'    try: - l = os.popen('hg id -it').read().split() + l = os.popen('hg -R . id -it').read().split()   while len(l) > 1 and l[-1][0].isalpha(): # remove non-numbered tags   l.pop()   version = l and l[-1] or 'unknown' # latest tag or revision number