Update desktop.py

Fixed syntax error.
This commit is contained in:
Jan Oliver Oelerich 2015-10-25 20:41:42 +01:00
parent 4d24b17e2b
commit e78501a0cc

View File

@ -33,7 +33,7 @@ try:
import gi
gi.require_version('Notify', '0.7')
from gi.repository import Notify
except ImportError, ValueError:
except (ImportError, ValueError):
pass
else:
if not Notify.init("i3pystatus"):