Mercurial > hg-stable
changeset 5165:ec24bfd852ab
imerge: simplify 1d5ebb0d366f
author | Brendan Cully <brendan@kublai.com> |
---|---|
date | Mon, 13 Aug 2007 11:58:47 -0700 |
parents | 1d5ebb0d366f |
children | b1e147f60d62 |
files | hgext/imerge.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/imerge.py Mon Aug 13 19:42:52 2007 +0200 +++ b/hgext/imerge.py Mon Aug 13 11:58:47 2007 -0700 @@ -36,7 +36,7 @@ tf = tarfile.open(source, 'r') contents = tf.getnames() # tarfile normalizes path separators to '/' - statusfile = '/'.join(['.hg', 'imerge', 'status']) + statusfile = '.hg/imerge/status' if statusfile not in contents: raise InvalidStateFileException('no status file')