renamed standalonepublisher to addon

This commit is contained in:
Jakub Trllo 2022-08-26 15:13:16 +02:00
parent 3e912a88f6
commit 4a35b4bea7
2 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,6 @@
from .standalonepublish_module import StandAlonePublishModule
from .addon import StandAlonePublishAddon
__all__ = (
"StandAlonePublishModule",
"StandAlonePublishAddon",
)

View file

@ -10,9 +10,9 @@ from openpype.modules.interfaces import ITrayAction, IHostAddon
STANDALONEPUBLISH_ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
class StandAlonePublishModule(OpenPypeModule, ITrayAction, IHostAddon):
class StandAlonePublishAddon(OpenPypeModule, ITrayAction, IHostAddon):
label = "Publish"
name = "standalonepublish_tool"
name = "standalonepublisher"
host_name = "standalonepublisher"
def initialize(self, modules_settings):
@ -42,7 +42,7 @@ class StandAlonePublishModule(OpenPypeModule, ITrayAction, IHostAddon):
@click.group(
StandAlonePublishModule.name,
StandAlonePublishAddon.name,
help="StandalonePublisher related commands.")
def cli_main():
pass