Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Commit

Permalink
fix/selene_uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 17, 2022
1 parent 8d54143 commit 591a69c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ovos_local_backend/utils/selene.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ovos_local_backend.database.settings import SkillSettings, SharedSettingsDatabase, DeviceDatabase

_selene_pairing_data = None
_selene_uuid = uuid4()
_selene_uuid = str(uuid4())
_selene_cfg = CONFIGURATION.get("selene") or {}

_ident_file = _selene_cfg.get("identity_file", "")
Expand Down Expand Up @@ -219,7 +219,7 @@ def get_selene_pairing_data():
global _selene_pairing_data, _selene_uuid
if not _selene_pairing_data:
try:
_selene_uuid = uuid4()
_selene_uuid = str(uuid4())
_selene_pairing_data = _device_api.get_code(_selene_uuid)
except:
LOG.exception("Failed to get selene pairing data")
Expand Down

0 comments on commit 591a69c

Please sign in to comment.