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

Fixed string conversion.

parent 99c4f212
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.
Finish editing this message first!
Please register or to comment