Downgraded "show already in your list" exception when adding a new show to WARNING

This commit is contained in:
echel0n 2014-12-21 16:35:48 -08:00
parent 009da64975
commit 35fcca3873
1 changed files with 1 additions and 2 deletions

View File

@ -320,7 +320,7 @@ class QueueItemAdd(ShowQueueItem):
return
except exceptions.MultipleShowObjectsException:
logger.log(u"The show in " + self.showDir + " is already in your show list, skipping", logger.ERROR)
logger.log(u"The show in " + self.showDir + " is already in your show list, skipping", logger.WARNING)
ui.notifications.error('Show skipped', "The show in " + self.showDir + " is already in your show list")
self._finishEarly()
return
@ -335,7 +335,6 @@ class QueueItemAdd(ShowQueueItem):
try:
self.show.loadIMDbInfo()
except imdb_exceptions.IMDbError, e:
#todo Insert UI notification
logger.log(u" Something wrong on IMDb api: " + ex(e), logger.WARNING)
except Exception, e:
logger.log(u"Error loading IMDb info: " + ex(e), logger.ERROR)