Skip to content

Commit

Permalink
Fix a unicode error when creating metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
midgetspy committed Feb 28, 2012
1 parent ae9ce4d commit 105c509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/tv.py
Expand Up @@ -1269,7 +1269,7 @@ def __str__ (self):

def createMetaFiles(self, force=False):

if not os.path.isdir(self.show._location):
if not ek.ek(os.path.isdir, self.show._location):
logger.log(str(self.show.tvdbid) + ": The show dir is missing, not bothering to try to create metadata")
return

Expand Down

0 comments on commit 105c509

Please sign in to comment.