mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-04 07:02:26 -05:00
Downgraded "show already in your list" exception when adding a new show to WARNING
This commit is contained in:
parent
009da64975
commit
35fcca3873
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user