1
0

Remove useless dependency on pynotify

This commit is contained in:
Noah 2014-12-09 15:45:45 -08:00
parent 3882f664a7
commit 3c8f410654

View File

@ -41,7 +41,7 @@ c = dict(
# Command to run to check for available updates, and the expected status # Command to run to check for available updates, and the expected status
# code that indicates updates are available. # code that indicates updates are available.
yumcheck = "/usr/bin/yum check-update", yumcheck = "/usr/bin/yum check-update",
# Path to notify-send (set to None if you don't want notifications) # Path to notify-send (set to None if you don't want notifications)
notify = "/usr/bin/notify-send", notify = "/usr/bin/notify-send",
@ -56,7 +56,6 @@ c = dict(
import gtk import gtk
import gobject import gobject
import pynotify
import getopt import getopt
import sys import sys
@ -133,7 +132,7 @@ def main_loop():
global next_check global next_check
if int(time()) >= next_check: if int(time()) >= next_check:
status, output = commands.getstatusoutput(c['yumcheck']) status, output = commands.getstatusoutput(c['yumcheck'])
status = status >> 8 status = status >> 8
say("Executed command:", c['yumcheck']) say("Executed command:", c['yumcheck'])