equal
deleted
inserted
replaced
690 files = cmdutil.updatedir(self.ui, repo, files) |
690 files = cmdutil.updatedir(self.ui, repo, files) |
691 match = cmdutil.matchfiles(repo, files or []) |
691 match = cmdutil.matchfiles(repo, files or []) |
692 n = repo.commit(message, ph.user, ph.date, match=match, force=True) |
692 n = repo.commit(message, ph.user, ph.date, match=match, force=True) |
693 |
693 |
694 if n is None: |
694 if n is None: |
695 raise util.Abort(_("repo commit failed")) |
695 raise util.Abort(_("repository commit failed")) |
696 |
696 |
697 if update_status: |
697 if update_status: |
698 self.applied.append(statusentry(n, patchname)) |
698 self.applied.append(statusentry(n, patchname)) |
699 |
699 |
700 if patcherr: |
700 if patcherr: |