Fix logging typo

This commit is contained in:
angelblue05 2016-06-20 13:58:17 -05:00
parent f47ead1ddc
commit 49157bbbea
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ def reset():
window('emby_shouldStop', value="true") window('emby_shouldStop', value="true")
count = 10 count = 10
while window('emby_dbScan') == "true": while window('emby_dbScan') == "true":
logMsg("EMBY", "Sync is running, will retry: %s..." % count) log("Sync is running, will retry: %s..." % count)
count -= 1 count -= 1
if count == 0: if count == 0:
dialog.ok("Warning", "Could not stop the database from running. Try again.") dialog.ok("Warning", "Could not stop the database from running. Try again.")