Skip to content

Commit

Permalink
Updated import mechanism to be the same as other json imports in sickbed
Browse files Browse the repository at this point in the history
  • Loading branch information
daften committed Dec 16, 2011
1 parent d50c790 commit a799762
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sickbeard/notifiers/trakt.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@

from hashlib import sha1

import json
try:
import json
except ImportError:
from lib import simplejson as json

import sickbeard

Expand Down

0 comments on commit a799762

Please sign in to comment.