Skip to content

Commit

Permalink
Fix a misleading log entry.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramiro Morales committed Apr 17, 2016
1 parent e828d81 commit dd37e8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def _double_dot_fix_hack(video_filename):
if xbmcvfs.exists(bad):
log(u"%s exists" % bad)
if xbmcvfs.exists(old):
log(u"%s exists, renaming" % old)
log(u"%s exists, removing" % old)
xbmcvfs.delete(old)
log(u"renaming %s to %s" % (bad, old))
xbmcvfs.rename(bad, old)
Expand Down

0 comments on commit dd37e8f

Please sign in to comment.