strip: remove unused excsuffix argument from checklocalchanges()
authorMartin von Zweigbergk <martinvonz@google.com>
Mon, 17 Jun 2019 10:40:24 -0700
changeset 42490 3a1988e915f9
parent 42489 cf445a212b9c
child 42491 1474f5d84662
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
hgext/strip.py
--- 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):