Submitter | phabricator |
---|---|
Date | May 22, 2018, 12:12 p.m. |
Message ID | <0b336ec626fdea37e6551252689e675d@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/31813/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/state.py b/mercurial/state.py --- a/mercurial/state.py +++ b/mercurial/state.py @@ -70,7 +70,7 @@ data in the same format as it was before storing""" with self._repo.vfs(self.fname, 'rb') as fp: try: - version = int(fp.readline()) + int(fp.readline()) except ValueError: raise error.ProgrammingError("unknown version of state file" " found")