From 86a140aaf4b799ee78864c7a520ba9fde9fb3382 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 7 Sep 2011 23:20:54 -0400 Subject: Oops, that forgot the equals part of Mercurial 1.9 or greater. --- libbe/storage/vcs/hg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbe/storage/vcs') 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: -- cgit