Skip to content
This repository was archived by the owner on May 16, 2024. It is now read-only.

Commit 595587b

Browse files
committed
Merge branch 'PR/197'
Closes frej#197, frej#185, frej#196
2 parents 29a457e + 0b6b83c commit 595587b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hg-fast-export.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ def get_branchname(name):
323323
# later non-merge revision: feed in changed manifest
324324
# if we have exactly one parent, just take the changes from the
325325
# manifest without expensively comparing checksums
326-
f=repo.status(parents[0],revnode)[:3]
327-
added,changed,removed=f[1],f[0],f[2]
326+
f=repo.status(parents[0],revnode)
327+
added,changed,removed=f.added,f.modified,f.removed
328328
type='simple delta'
329329
else: # a merge with two parents
330330
wr('merge %s' % revnum_to_revref(parents[1], old_marks))

0 commit comments

Comments
 (0)