diff options
author | W. Trevor King <wking@drexel.edu> | 2011-09-07 23:20:54 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2011-09-07 23:20:54 -0400 |
commit | 86a140aaf4b799ee78864c7a520ba9fde9fb3382 (patch) | |
tree | c2f65da1ab70b547d8cce0ebd5c79ed97709bb73 /libbe | |
parent | 49af3ec57ce56256ef306f1a51e14812a4c6a799 (diff) | |
download | bugseverywhere-86a140aaf4b799ee78864c7a520ba9fde9fb3382.tar.gz |
Oops, that forgot the equals part of Mercurial 1.9 or greater.
Diffstat (limited to 'libbe')
-rw-r--r-- | libbe/storage/vcs/hg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbe/storage/vcs/hg.py b/libbe/storage/vcs/hg.py index b61e796..758ea5a 100644 --- a/libbe/storage/vcs/hg.py +++ b/libbe/storage/vcs/hg.py @@ -85,7 +85,7 @@ class Hg(base.VCS): fullargs.extend(args) cwd = os.getcwd() output = StringIO.StringIO() - if self.version_cmp(1,9): + if self.version_cmp(1,9) >= 0: req = mercurial.dispatch.request(fullargs, fout=output) mercurial.dispatch.dispatch(req) else: |