Fixed pass statements that were literally doing nothing.

master
MrTyton 7 years ago
parent 7bf9792273
commit cc14dd210c

@ -15,16 +15,23 @@ from ConfigParser import ConfigParser
def enable_notifications(options): def enable_notifications(options):
if options.pushbullet: if options.pushbullet:
pb = Pushbullet(options.pushbullet) fail = False
if options.pbdevice: try:
pb = Pushbullet(options.pushbullet)
except:
print "Problem wtih connecting to pushbullet. API Key likely invalid"
fail = True
if options.pbdevice and not fail:
try: try:
pb = pb.get_device(options.pbdevice) pb = pb.get_device(options.pbdevice)
except: except:
print "Cannot get this device." print "Cannot get this device."
fail = True
pass pass
temp_note = Notification() if not fail:
temp_note.send_notification = pb.push_note temp_note = Notification()
yield temp_note temp_note.send_notification = pb.push_note
yield temp_note
if options.notify: if options.notify:
notary = Notification() notary = Notification()

Loading…
Cancel
Save