Mercurial > public > mercurial-scm > hg
comparison setup.py @ 8550:cbd3a104637f
setup: another newline if version could not be established.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sat, 23 May 2009 13:43:11 +0200 |
parents | 9f85da260508 |
children | 4c5b46f736f1 |
comparison
equal
deleted
inserted
replaced
8549:9f85da260508 | 8550:cbd3a104637f |
---|---|
112 stderr=subprocess.PIPE).communicate() | 112 stderr=subprocess.PIPE).communicate() |
113 os.environ['PYTHONPATH'] = pypath | 113 os.environ['PYTHONPATH'] = pypath |
114 | 114 |
115 if e: | 115 if e: |
116 sys.stderr.write('warning: could not establish Mercurial ' | 116 sys.stderr.write('warning: could not establish Mercurial ' |
117 'version: %s\n' % e) | 117 'version:\n%s\n' % e) |
118 else: | 118 else: |
119 l = l.split() | 119 l = l.split() |
120 while len(l) > 1 and l[-1][0].isalpha(): # remove non-numbered tags | 120 while len(l) > 1 and l[-1][0].isalpha(): # remove non-numbered tags |
121 l.pop() | 121 l.pop() |
122 if l: | 122 if l: |