Skip to content

Commit

Permalink
Add message on supertool registering
Browse files Browse the repository at this point in the history
Closes #3
  • Loading branch information
MrLixm committed Mar 18, 2022
1 parent 3db6003 commit 794bfc4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
6 changes: 5 additions & 1 deletion GSVDashboard/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@
'GSVDashboard',
(GSVDashboard.GSVDashboardNode, GSVDashboard.get_editor)
)
]
]

print(
"[SuperTools][GSVDashboard] Registered {}".format(GSVDashboard.version)
)
6 changes: 6 additions & 0 deletions GSVDashboard/v1/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,17 @@
from __future__ import absolute_import

from .Node import GSVDashboardNode
from . import c


__all__ = ["GSVDashboardNode", "get_editor"]


version = "v{}.{}.{}-{}.{}".format(
c.v_major, c.v_minor, c.v_patch, c.v_dev, c.v_published
)


def get_editor():
"""
Return the SuperTool interface class for registering in Katana.
Expand Down

0 comments on commit 794bfc4

Please sign in to comment.