##// END OF EJS Templates
rebase: stop using the `pycompat.open()` shim
Matt Harbison -
r53283:6856d884 default
parent child Browse files
Show More
@@ -24,7 +24,6 from mercurial.node import (
24 24 short,
25 25 wdirrev,
26 26 )
27 from mercurial.pycompat import open
28 27 from mercurial import (
29 28 bookmarks,
30 29 cmdutil,
@@ -1857,7 +1856,7 def defineparents(repo, rev, destmap, st
1857 1856 def isagitpatch(repo, patchname):
1858 1857 """Return true if the given patch is in git format"""
1859 1858 mqpatch = os.path.join(repo.mq.path, patchname)
1860 for line in patch.linereader(open(mqpatch, b'rb')):
1859 for line in patch.linereader(open(mqpatch, 'rb')):
1861 1860 if line.startswith(b'diff --git'):
1862 1861 return True
1863 1862 return False
General Comments 0
You need to be logged in to leave comments. Login now