Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray authored Jun 2, 2024
1 parent 6d440dd commit aad4c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ovos_audio/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ def _resolve_sound_uri(uri: str):
if uri is None:
return None
if uri.startswith("snd/") or uri.startswith("snd\\"):
local_uri = os.path.join(os.path.dirname(__file__)}, "res", uri)
local_uri = os.path.join(os.path.dirname(__file__), "res", uri)
if os.path.isfile(local_uri):
return local_uri
audio_file = resolve_resource_file(uri)
Expand Down

0 comments on commit aad4c39

Please sign in to comment.