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)
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 testTwitter(): return tweet.notifyTwitter("This is a test notification from Sick Beard", force=True)