Rename forallrepos plugin to for_all_repos

Comes closer to how the command is spelled. We can't uses dashes as that
is not compatible with the python syntax.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka 2020-11-17 18:16:02 +01:00
parent 9176d1f5b9
commit b36b2dbedd
3 changed files with 5 additions and 5 deletions

View File

@ -81,10 +81,10 @@ typically provides a single command.
.. automodule:: kas.plugins.checkout .. automodule:: kas.plugins.checkout
``forallrepos`` plugin ``for-all-repos`` plugin
~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~
.. automodule:: kas.plugins.forallrepos .. automodule:: kas.plugins.for_all_repos
``shell`` plugin ``shell`` plugin
~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~

View File

@ -39,13 +39,13 @@ def load():
Import all kas plugins Import all kas plugins
""" """
from . import build from . import build
from . import forallrepos from . import for_all_repos
from . import checkout from . import checkout
from . import shell from . import shell
register_plugins(build) register_plugins(build)
register_plugins(checkout) register_plugins(checkout)
register_plugins(forallrepos) register_plugins(for_all_repos)
register_plugins(shell) register_plugins(shell)