Merge pull request #853 from pypeclub/bugfix/rename_logging_module

Logging module rename
This commit is contained in:
Milan Kolar 2020-12-22 12:21:34 +01:00 committed by GitHub
commit 1e7136232f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View file

@ -32,7 +32,7 @@ from .ftrack import (
IFtrackEventHandlerPaths
)
from .clockify import ClockifyModule
from .logging import LoggingModule
from .log_viewer import LogViewModule
from .muster import MusterModule
from .standalonepublish_action import StandAlonePublishAction
from .websocket_server import WebsocketModule
@ -70,7 +70,7 @@ __all__ = (
"ClockifyModule",
"IdleManager",
"LoggingModule",
"LogViewModule",
"MusterModule",
"StandAlonePublishAction",

View file

@ -0,0 +1,6 @@
from .log_view_module import LogViewModule
__all__ = (
"LogViewModule",
)

View file

@ -2,7 +2,7 @@ from pype.api import Logger
from .. import PypeModule, ITrayModule
class LoggingModule(PypeModule, ITrayModule):
class LogViewModule(PypeModule, ITrayModule):
name = "log_viewer"
def initialize(self, modules_settings):

View file

@ -1,6 +0,0 @@
from .logging_module import LoggingModule
__all__ = (
"LoggingModule",
)