Submitter | phabricator |
---|---|
Date | July 29, 2019, 10:31 a.m. |
Message ID | <9b8e434b2b4a1b939718b27a343fa2e4@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/41097/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/mercurial/shelve.py b/mercurial/shelve.py --- a/mercurial/shelve.py +++ b/mercurial/shelve.py @@ -836,8 +836,8 @@ snode = repo.commit(text=shelvectx.description(), extra=shelvectx.extra(), user=shelvectx.user()) - m = scmutil.matchfiles(repo, repo[snode].files()) if snode: + m = scmutil.matchfiles(repo, repo[snode].files()) _shelvecreatedcommit(repo, snode, basename, m) return newnode, bool(snode)