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)