Mercurial > hg
changeset 42490:3a1988e915f9
strip: remove unused excsuffix argument from checklocalchanges()
It was only used by mq, and mq now has its own copy of the function.
Differential Revision: https://phab.mercurial-scm.org/D6534
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Mon, 17 Jun 2019 10:40:24 -0700 |
parents | cf445a212b9c |
children | 1474f5d84662 |
files | hgext/strip.py |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/strip.py Mon Jun 17 10:38:50 2019 -0700 +++ b/hgext/strip.py Mon Jun 17 10:40:24 2019 -0700 @@ -46,19 +46,19 @@ inclsubs.append(s) return inclsubs -def checklocalchanges(repo, force=False, excsuffix=''): +def checklocalchanges(repo, force=False): cmdutil.checkunfinished(repo) s = repo.status() if not force: if len(repo[None].parents()) > 1: _("outstanding uncommitted merge") #i18 tool detection - raise error.Abort(_("outstanding uncommitted merge"+ excsuffix)) + raise error.Abort(_("outstanding uncommitted merge")) if s.modified or s.added or s.removed or s.deleted: _("local changes found") # i18n tool detection - raise error.Abort(_("local changes found" + excsuffix)) + raise error.Abort(_("local changes found")) if checksubstate(repo): _("local changed subrepos found") # i18n tool detection - raise error.Abort(_("local changed subrepos found" + excsuffix)) + raise error.Abort(_("local changed subrepos found")) return s def _findupdatetarget(repo, nodes):