mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
renamed standalonepublisher to addon
This commit is contained in:
parent
3e912a88f6
commit
4a35b4bea7
2 changed files with 5 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
from .standalonepublish_module import StandAlonePublishModule
|
||||
from .addon import StandAlonePublishAddon
|
||||
|
||||
|
||||
__all__ = (
|
||||
"StandAlonePublishModule",
|
||||
"StandAlonePublishAddon",
|
||||
)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue