From patchwork Sat Oct 5 17:45:37 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D6984: cvsps: switch a file open to a with statement From: phabricator X-Patchwork-Id: 41985 Message-Id: To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Sat, 5 Oct 2019 17:45:37 +0000 durin42 created this revision. Herald added a subscriber: mercurial-devel. Herald added a reviewer: hg-reviewers. REVISION SUMMARY For some reason this only showed up in check-code after running black. Puzzling. REPOSITORY rHG Mercurial REVISION DETAIL https://phab.mercurial-scm.org/D6984 AFFECTED FILES hgext/convert/cvsps.py CHANGE DETAILS To: durin42, #hg-reviewers Cc: mercurial-devel 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 = ""