mirror of
https://github.com/jellyfin/jellycon.git
synced 2025-02-17 04:07:37 +00:00
fix: restore changes of fstring in service.py
This commit is contained in:
parent
96982d52f1
commit
721aa664a8
@ -39,7 +39,7 @@ monitor = xbmc.Monitor()
|
||||
try:
|
||||
clear_old_cache_data()
|
||||
except Exception as error:
|
||||
log.error(f"Error in clear_old_cache_data() : {error}")
|
||||
log.error("Error in clear_old_cache_data() : {0}".format(error))
|
||||
|
||||
# wait for 10 seconds for the Kodi splash screen to close
|
||||
i = 0
|
||||
@ -163,8 +163,8 @@ while home_window.get_property('exit') == 'False':
|
||||
set_background_image(False)
|
||||
|
||||
except Exception as error:
|
||||
log.error(f"Exception in Playback Monitor: {error}")
|
||||
log.error(f"{traceback.format_exc()}")
|
||||
log.error("Exception in Playback Monitor: {0}".format(error))
|
||||
log.error("{0}".format(traceback.format_exc()))
|
||||
|
||||
first_run = False
|
||||
xbmc.sleep(1000)
|
||||
|
Loading…
x
Reference in New Issue
Block a user