Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Lars Kruse
aura-engine
Commits
4cf5840c
Commit
4cf5840c
authored
Sep 18, 2020
by
David Trattnig
Browse files
Fixed string conversion.
parent
99c4f212
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/core/engine.py
View file @
4cf5840c
...
...
@@ -534,7 +534,7 @@ class SoundSystem():
while
not
self
.
stream_is_ready
(
entry
.
channel
,
entry
.
source
):
self
.
logger
.
info
(
"Loading Stream ..."
)
if
retries
>=
max_retries
:
raise
LoadSourceException
(
"Could not connect to stream while waiting for %s seconds!"
%
retries
*
retry_delay
)
raise
LoadSourceException
(
"Could not connect to stream while waiting for %s seconds!"
%
str
(
retries
*
retry_delay
)
)
time
.
sleep
(
retry_delay
)
retries
+=
1
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment