Fix getting bzr tags

This commit is contained in:
Jonathan Springer 2014-05-06 16:05:05 -04:00
parent c0cbc8a014
commit ec7df6dd5a
2 changed files with 2 additions and 2 deletions

View File

@ -340,7 +340,7 @@ class MacosxBuilder(object):
"""
self._print('Writing version file...')
os.chdir(self.branch_path)
bzr = Popen(('bzr', 'tags', '--sort', 'time'), stdout=PIPE)
bzr = Popen(('bzr', 'tags'), stdout=PIPE)
output = bzr.communicate()[0]
code = bzr.wait()
if code != 0:

View File

@ -318,7 +318,7 @@ class WindowsBuilder(object):
"""
self._print('Writing version file...')
os.chdir(self.branch_path)
bzr = Popen(('bzr', 'tags', '--sort', 'time'), stdout=PIPE)
bzr = Popen(('bzr', 'tags'), stdout=PIPE)
output = bzr.communicate()[0]
code = bzr.wait()
if code != 0: