Submitter | phabricator |
---|---|
Date | Oct. 5, 2019, 6:14 p.m. |
Message ID | <4018eea27a1170f5b15f1c3884d76f5e@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/41987/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/convert/cvsps.py b/hgext/convert/cvsps.py --- a/hgext/convert/cvsps.py +++ b/hgext/convert/cvsps.py @@ -138,7 +138,8 @@ # Get the real directory in the repository try: - prefix = open(os.path.join('CVS','Repository'), 'rb').read().strip() + with open(os.path.join(b'CVS', b'Repository'), 'rb') as f: + prefix = f.read().strip() directory = prefix if prefix == ".": prefix = ""