Submitter | phabricator |
---|---|
Date | Jan. 23, 2019, 5:50 a.m. |
Message ID | <a2a9516e9a087bbabf6f61dbc11c5957@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/37929/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/remotefilelog/basepack.py b/hgext/remotefilelog/basepack.py --- a/hgext/remotefilelog/basepack.py +++ b/hgext/remotefilelog/basepack.py @@ -270,9 +270,9 @@ # only affect this instance self.VERSION = version elif self.VERSION != version: - raise RuntimeError('inconsistent version: %s' % version) + raise RuntimeError('inconsistent version: %d' % version) else: - raise RuntimeError('unsupported version: %s' % version) + raise RuntimeError('unsupported version: %d' % version) class basepack(versionmixin): # The maximum amount we should read via mmap before remmaping so the old