mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-01 08:24:53 +01:00
fix hound
This commit is contained in:
parent
6951e046de
commit
d8eec091c3
1 changed files with 5 additions and 4 deletions
|
|
@ -66,11 +66,10 @@ class ClockifyModule:
|
||||||
)
|
)
|
||||||
|
|
||||||
if 'AvalonApps' in modules:
|
if 'AvalonApps' in modules:
|
||||||
from launcher import lib
|
actions_path = os.path.join(
|
||||||
actions_path = os.path.sep.join([
|
|
||||||
os.path.dirname(__file__),
|
os.path.dirname(__file__),
|
||||||
'launcher_actions'
|
'launcher_actions'
|
||||||
])
|
)
|
||||||
current = os.environ.get('AVALON_ACTIONS', '')
|
current = os.environ.get('AVALON_ACTIONS', '')
|
||||||
if current:
|
if current:
|
||||||
current += os.pathsep
|
current += os.pathsep
|
||||||
|
|
@ -209,7 +208,9 @@ class ClockifyModule:
|
||||||
self.message_widget = self.MessageWidgetClass(
|
self.message_widget = self.MessageWidgetClass(
|
||||||
self.main_parent, msg, "Clockify - Info Message"
|
self.main_parent, msg, "Clockify - Info Message"
|
||||||
)
|
)
|
||||||
self.message_widget.closed.connect(self.on_message_widget_close)
|
self.message_widget.closed.connect(
|
||||||
|
self.on_message_widget_close
|
||||||
|
)
|
||||||
self.message_widget.show()
|
self.message_widget.show()
|
||||||
|
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue