Skip to content

Commit

Permalink
Missed one raw_location.
Browse files Browse the repository at this point in the history
  • Loading branch information
p0psicles committed Jul 15, 2016
1 parent 2db6c34 commit 997e70a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/tv.py
Original file line number Diff line number Diff line change
Expand Up @@ -1210,7 +1210,7 @@ def delete_show(self, full=False):
except ShowDirectoryNotFoundException:
logger.log(u'Show folder does not exist, no need to %s %s' % (action, self.raw_location), logger.WARNING)
except OSError as e:
logger.log(u'Unable to %s %s: %s / %s' % (action, self.location, repr(e), str(e)), logger.WARNING)
logger.log(u'Unable to %s %s: %s / %s' % (action, self.raw_location, repr(e), str(e)), logger.WARNING)

if sickbeard.USE_TRAKT and sickbeard.TRAKT_SYNC_WATCHLIST:
logger.log(u'Removing show: indexerid ' + str(self.indexerid) +
Expand Down

0 comments on commit 997e70a

Please sign in to comment.