Submitter | phabricator |
---|---|
Date | Jan. 9, 2020, 6:13 p.m. |
Message ID | <ee5a48cd7a7f2975b9f2e241d89ae9d5@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/44237/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/revlog.py b/mercurial/revlog.py --- a/mercurial/revlog.py +++ b/mercurial/revlog.py @@ -592,7 +592,7 @@ self._storedeltachains = True self._io = revlogio() - if rustrevlog is not None and self.opener.options.get('rust.index'): + if rustrevlog is not None and self.opener.options.get(b'rust.index'): self._io = rustrevlogio() if self.version == REVLOGV0: self._io = revlogoldio()