Submitter | Augie Fackler |
---|---|
Date | March 12, 2017, 5:38 p.m. |
Message ID | <406938c2ae5042166b7a.1489340297@augie-macbookair2.roam.corp.google.com> |
Download | mbox | patch |
Permalink | /patch/19184/ |
State | Superseded |
Headers | show |
Comments
Patch
diff --git a/mercurial/context.py b/mercurial/context.py --- a/mercurial/context.py +++ b/mercurial/context.py @@ -33,6 +33,7 @@ from . import ( obsolete as obsmod, patch, phases, + pycompat, repoview, revlog, scmutil, @@ -419,7 +420,7 @@ class changectx(basectx): self._node = repo.changelog.node(changeid) self._rev = changeid return - if isinstance(changeid, long): + if not pycompat.ispy3 and isinstance(changeid, long): changeid = str(changeid) if changeid == 'null': self._node = nullid