aboutsummaryrefslogtreecommitdiffstats
path: root/libbe/storage
diff options
context:
space:
mode:
authorW. Trevor King <wking@drexel.edu>2011-09-07 23:20:54 -0400
committerW. Trevor King <wking@drexel.edu>2011-09-07 23:20:54 -0400
commit86a140aaf4b799ee78864c7a520ba9fde9fb3382 (patch)
treec2f65da1ab70b547d8cce0ebd5c79ed97709bb73 /libbe/storage
parent49af3ec57ce56256ef306f1a51e14812a4c6a799 (diff)
downloadbugseverywhere-86a140aaf4b799ee78864c7a520ba9fde9fb3382.tar.gz
Oops, that forgot the equals part of Mercurial 1.9 or greater.
Diffstat (limited to 'libbe/storage')
-rw-r--r--libbe/storage/vcs/hg.py2
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: