From ec7df6dd5a4366367e8922a91706814ad1b6b1cd Mon Sep 17 00:00:00 2001 From: Jonathan Springer Date: Tue, 6 May 2014 16:05:05 -0400 Subject: [PATCH] Fix getting bzr tags --- osx/macosx-builder.py | 2 +- windows/windows-builder.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/osx/macosx-builder.py b/osx/macosx-builder.py index 69f7504..7ebc22d 100644 --- a/osx/macosx-builder.py +++ b/osx/macosx-builder.py @@ -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: diff --git a/windows/windows-builder.py b/windows/windows-builder.py index 7f0f9bb..3b41562 100644 --- a/windows/windows-builder.py +++ b/windows/windows-builder.py @@ -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: