# HG changeset patch # User Matt Harbison # Date 1545460199 18000 # Node ID 00d1963f50e5f970e48c2d4fc1a6de73a5129cd5 # Parent b4bc185bcefb72ac1b5ee0a0baff0e3a4e1ee241 exthelper: remove '_' in final_xxx() function names to conform to hg style diff -r b4bc185bcefb -r 00d1963f50e5 hgext3rd/evolve/__init__.py --- a/hgext3rd/evolve/__init__.py Mon Dec 24 18:38:25 2018 +0100 +++ b/hgext3rd/evolve/__init__.py Sat Dec 22 01:29:59 2018 -0500 @@ -364,9 +364,9 @@ eh.merge(compat.eh) eh.merge(cmdrewrite.eh) eh.merge(rewind.eh) -uisetup = eh.final_uisetup -extsetup = eh.final_extsetup -reposetup = eh.final_reposetup +uisetup = eh.finaluisetup +extsetup = eh.finalextsetup +reposetup = eh.finalreposetup cmdtable = eh.cmdtable configtable = eh.configtable diff -r b4bc185bcefb -r 00d1963f50e5 hgext3rd/evolve/exthelper.py --- a/hgext3rd/evolve/exthelper.py Mon Dec 24 18:38:25 2018 +0100 +++ b/hgext3rd/evolve/exthelper.py Sat Dec 22 01:29:59 2018 -0500 @@ -78,7 +78,7 @@ else: self.configtable[section] = items - def final_uisetup(self, ui): + def finaluisetup(self, ui): """Method to be used as the extension uisetup The following operations belong here: @@ -109,7 +109,7 @@ for c in self._uicallables: c(ui) - def final_uipopulate(self, ui): + def finaluipopulate(self, ui): """Method to be used as the extension uipopulate This is called once per ui instance to: @@ -121,7 +121,7 @@ for c in self._uipopulatecallables: c(ui) - def final_extsetup(self, ui): + def finalextsetup(self, ui): """Method to be used as a the extension extsetup The following operations belong here: @@ -169,7 +169,7 @@ for c in self._extcallables: c(ui) - def final_reposetup(self, ui, repo): + def finalreposetup(self, ui, repo): """Method to be used as the extension reposetup The following operations belong here: diff -r b4bc185bcefb -r 00d1963f50e5 hgext3rd/evolve/serveronly.py --- a/hgext3rd/evolve/serveronly.py Mon Dec 24 18:38:25 2018 +0100 +++ b/hgext3rd/evolve/serveronly.py Sat Dec 22 01:29:59 2018 -0500 @@ -45,9 +45,9 @@ eh.merge(compat.eh) eh.merge(obscache.eh) eh.merge(obsexchange.eh) -uisetup = eh.final_uisetup -extsetup = eh.final_extsetup -reposetup = eh.final_reposetup +uisetup = eh.finaluisetup +extsetup = eh.finalextsetup +reposetup = eh.finalreposetup cmdtable = eh.cmdtable configtable = eh.configtable