Skip to content

Commit

Permalink
Rename the python file
Browse files Browse the repository at this point in the history
  • Loading branch information
mnecas authored and mwperina committed Apr 18, 2022
1 parent 7349998 commit f2e5957
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@

from otopi import util

from . import ars_cleanup
from . import engine
from . import root
from . import runner


@util.export
def createPlugins(context):
engine.Plugin(context=context)
root.Plugin(context=context)
runner.Plugin(context=context)
ars_cleanup.Plugin(context=context)


# vim: expandtab tabstop=4 shiftwidth=4
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#


"""Apache ansible-runner plugin."""
"""Apache ansible-runner-service cleanup plugin."""


import gettext
Expand All @@ -29,7 +29,7 @@ def _(m):

@util.export
class Plugin(plugin.PluginBase):
"""Cleanup of the ansible-runner plugin."""
"""Apache ansible-runner-service cleanup plugin."""

def __init__(self, context):
super(Plugin, self).__init__(context=context)
Expand Down

0 comments on commit f2e5957

Please sign in to comment.