From: W. Trevor King Date: Thu, 8 Sep 2011 03:20:54 +0000 (-0400) Subject: Oops, that forgot the equals part of Mercurial 1.9 or greater. X-Git-Tag: 1.1.0~175^2~8 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=86a140aaf4b799ee78864c7a520ba9fde9fb3382;p=be.git Oops, that forgot the equals part of Mercurial 1.9 or greater. --- 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: