Skip to content
Snippets Groups Projects
Commit 7a240bf2 authored by David Trattnig's avatar David Trattnig
Browse files

Fixed string conversion.

parent 5e83bb83
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment