Submitter | phabricator |
---|---|
Date | Feb. 6, 2020, 4:11 p.m. |
Message ID | <a9f2fbd2212446ac46db4d18bdf874d1@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/44991/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/archival.py b/mercurial/archival.py --- a/mercurial/archival.py +++ b/mercurial/archival.py @@ -355,7 +355,7 @@ if match(name): write(name, 0o644, False, lambda: buildmetadata(ctx)) - files = [f for f in ctx.manifest().matches(match)] + files = list(ctx.manifest().walk(match)) total = len(files) if total: files.sort()