##// END OF EJS Templates
commitctx: create the new extra dict on its own line...
marmoute -
r45808:4cde23ba default
parent child Browse files
Show More
@@ -67,6 +67,8 b' def commitctx(repo, ctx, error=False, or'
67 67 r = _prepare_files(tr, ctx, error=error, origctx=origctx)
68 68 mn, files, p1copies, p2copies, filesadded, filesremoved = r
69 69
70 extra = ctx.extra().copy()
71
70 72 # update changelog
71 73 repo.ui.note(_(b"committing changelog\n"))
72 74 repo.changelog.delayupdate(tr)
@@ -79,7 +81,7 b' def commitctx(repo, ctx, error=False, or'
79 81 p2.node(),
80 82 user,
81 83 ctx.date(),
82 ctx.extra().copy(),
84 extra,
83 85 p1copies,
84 86 p2copies,
85 87 filesadded,
General Comments 0
You need to be logged in to leave comments. Login now