Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions ovos_core/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
from ovos_core.skill_manager import SkillManager, on_error, on_stopping, on_ready, on_alive, on_started
from ovos_utils import wait_for_exit_signal
from ovos_utils.log import LOG, init_service_logger
from ovos_utils.process_utils import reset_sigint_handler
from ovos_workshop.skills.api import SkillApi


Expand All @@ -38,7 +37,6 @@ def main(alive_hook=on_alive, started_hook=on_started, ready_hook=on_ready,
SkillManager instance or None if it couldn't be initialized
"""
init_service_logger("skills")
reset_sigint_handler()

setup_locale()

Expand Down
2 changes: 1 addition & 1 deletion ovos_core/intent_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ def handle_get_intent(self, message):
intent_data["handler"] = match_func.__name__
self.bus.emit(message.reply("intent.service.intent.reply",
{"intent": intent_data}))
return
return

# signal intent failure
self.bus.emit(message.reply("intent.service.intent.reply",
Expand Down
Loading