def notify(type, message): if type == NOTIFY_DOWNLOAD and sickbeard.XBMC_NOTIFY_ONDOWNLOAD == True: xbmc.notifyXBMC(message, notifyStrings[type]) if type == NOTIFY_SNATCH and sickbeard.XBMC_NOTIFY_ONSNATCH: xbmc.notifyXBMC(message, notifyStrings[type]) growl.sendGrowl(notifyStrings[type], message)
def notify(type, message): if type == NOTIFY_DOWNLOAD and sickbeard.XBMC_NOTIFY_ONDOWNLOAD == True: xbmc.notifyXBMC(message, notifyStrings[type]) if type == NOTIFY_SNATCH and sickbeard.XBMC_NOTIFY_ONSNATCH: xbmc.notifyXBMC(message, notifyStrings[type]) growl.sendGrowl(notifyStrings[type], message) if type == NOTIFY_DOWNLOAD: tweet.notifyTwitter(message) myepisodes.notifyMyepisodes(notifyStrings[type], message)
def notify(type, message): if type == NOTIFY_DOWNLOAD and sickbeard.XBMC_NOTIFY_ONDOWNLOAD == True: xbmc.notifyXBMC(message, notifyStrings[type]) if type == NOTIFY_SNATCH and sickbeard.XBMC_NOTIFY_ONSNATCH: xbmc.notifyXBMC(message, notifyStrings[type]) growl.sendGrowl(notifyStrings[type], message) prowl.sendProwl(message) notifo.notifyNotifo(message) if type == NOTIFY_DOWNLOAD: tweet.notifyTwitter(message)
def testGrowl(host, password): growl.sendGrowl("Test Growl", "Testing Growl settings from Sick Beard", "Test", host, password)