diff --git a/TODO.mkdn b/TODO.mkdn index 76e29c1..13428ee 100644 --- a/TODO.mkdn +++ b/TODO.mkdn @@ -19,7 +19,6 @@ Features * Use web connection to send offline messages in email-like fashion (Idea: ghostDunk) * Use web connection to save profiles (Idea: ghostDunk) * Better NickServ registering -* Unified data storage, OS-based user data location * Spectation notices (Idea: lexicalNuance) (probly WONTFIX) * Auto-login Nickserv * Make toast notifications only on certain chums diff --git a/generic.py b/generic.py index e0f61cf..8ff08be 100644 --- a/generic.py +++ b/generic.py @@ -26,7 +26,7 @@ class PesterList(list): self.extend(l) class PesterIcon(QtGui.QIcon): - def __init__(self, *x, **y): + def __init__(self, *x): QtGui.QIcon.__init__(self, x[0]) if type(x[0]) in [str, unicode]: self.icon_pixmap = QtGui.QPixmap(x[0])