hgext/mq.py
branchstable
changeset 12850 62b334b0dfdf
parent 12849 d966eb464888
child 12875 b59b5193d4d0
equal deleted inserted replaced
12849:d966eb464888 12850:62b334b0dfdf
   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: