Skip to content

Commit

Permalink
Fixed a crash in the notifo provider error logging (but not the under…
Browse files Browse the repository at this point in the history
…lying issue)
  • Loading branch information
midgetspy committed Feb 11, 2013
1 parent 0a08689 commit 4e57625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/notifiers/notifo.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def _sendNotifo(self, msg, title, username, apisecret, label="SickBeard"):
result = json.load(data)

except ValueError, e:
logger.log(u"Unable to decode JSON: "+data, logger.ERROR)
logger.log(u"Unable to decode JSON: "+repr(data), logger.ERROR)
return False

except IOError, e:
Expand Down

0 comments on commit 4e57625

Please sign in to comment.