Fix errors

This commit is contained in:
angelblue05 2016-07-02 23:41:42 -05:00
parent af85505a99
commit 6c8a95fabb
2 changed files with 3 additions and 3 deletions

View file

@ -163,9 +163,9 @@ def deleteItem():
embycursor.close() embycursor.close()
try: try:
embyid = item[0] itemId = item[0]
except TypeError: except TypeError:
log("Unknown embyId, unable to proceed.", 1) log("Unknown itemId, unable to proceed.", 1)
return return
if settings('skipContextMenu') != "true": if settings('skipContextMenu') != "true":

View file

@ -222,7 +222,7 @@ def getSongTags(file):
except Exception as e: except Exception as e:
#file in use ? #file in use ?
log("Exception in getSongTags", str(e),0) log("Exception in getSongTags %s" % e,0)
rating = None rating = None
#remove tempfile if needed.... #remove tempfile if needed....