From 5015ac39794df6076c26c53347dba06dfe7f51cd Mon Sep 17 00:00:00 2001 From: Kiooeht Date: Fri, 20 Jan 2012 12:47:53 -0800 Subject: [PATCH] TODO update, remove superfluous code that may cause problems on old PyQt versions --- TODO.mkdn | 1 - generic.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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])