Submitter | phabricator |
---|---|
Date | May 15, 2019, 6:04 p.m. |
Message ID | <5f75f7f29b0e1073f23a2874660fbcd6@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/40056/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/changelog.py b/mercurial/changelog.py --- a/mercurial/changelog.py +++ b/mercurial/changelog.py @@ -194,6 +194,8 @@ user = attr.ib(default='') date = attr.ib(default=(0, 0)) files = attr.ib(default=attr.Factory(list)) + p1copies = attr.ib(default=None) + p2copies = attr.ib(default=None) description = attr.ib(default='') class changelogrevision(object):