changeset 1173:b04758acf410

wrappers: note which version of hg e10000369b47 is from
author Augie Fackler <raf@durin42.com>
date Sat, 12 Apr 2014 11:02:11 -0400
parents 8b20e1bbcd23
children a22d4972e01f
files hgsubversion/wrappers.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/wrappers.py
+++ b/hgsubversion/wrappers.py
@@ -181,7 +181,8 @@ def push(repo, dest, force, revs):
     checkpush = getattr(repo, 'checkpush', None)
     if checkpush:
         try:
-            # The checkpush function changed as of e10000369b47 in mercurial
+            # The checkpush function changed as of e10000369b47 (first
+            # in 3.0) in mercurial
             from mercurial.exchange import pushoperation
             pushop = pushoperation(repo, dest, force, revs, False)
             checkpush(pushop)