##// END OF EJS Templates
imerge: simplify 1d5ebb0d366f
Brendan Cully -
r5165:ec24bfd8 default
parent child Browse files
Show More
@@ -36,7 +36,7 b' class ImergeStateFile(object):'
36 tf = tarfile.open(source, 'r')
36 tf = tarfile.open(source, 'r')
37 contents = tf.getnames()
37 contents = tf.getnames()
38 # tarfile normalizes path separators to '/'
38 # tarfile normalizes path separators to '/'
39 statusfile = '/'.join(['.hg', 'imerge', 'status'])
39 statusfile = '.hg/imerge/status'
40 if statusfile not in contents:
40 if statusfile not in contents:
41 raise InvalidStateFileException('no status file')
41 raise InvalidStateFileException('no status file')
42
42
General Comments 0
You need to be logged in to leave comments. Login now