Submitter | phabricator |
---|---|
Date | Feb. 7, 2019, midnight |
Message ID | <fa743d22c1463472fe1e9743f2bef989@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/38492/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/mq.py b/hgext/mq.py --- a/hgext/mq.py +++ b/hgext/mq.py @@ -738,9 +738,9 @@ for f in sorted(files): absf = repo.wjoin(f) if os.path.lexists(absf): - absorig = scmutil.origpath(self.ui, repo, absf) + absorig = scmutil.backuppath(self.ui, repo, f) self.ui.note(_('saving current version of %s as %s\n') % - (f, os.path.relpath(absorig))) + (f, os.path.relpath(absorig, start=repo.root))) if copy: util.copyfile(absf, absorig)