aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2008-04-06 20:39:32 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2008-04-06 20:39:32 +0200
commit944a941af5b42b669334a9b937067a7e8cd856db (patch)
treea2dae9d97d2d265b702a83e5b684057f8b3b240a
parent587a921d30ad99260e99f066c795a79f829ac819 (diff)
a fix for python-2.4 compatibility
- interesting, it has been reported this is the only problem, though ideally skype4py doesn't work with python-2.4 either ;)
-rw-r--r--skype/skyped.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/skype/skyped.py b/skype/skyped.py
index 271450b7..7726a4dd 100644
--- a/skype/skyped.py
+++ b/skype/skyped.py
@@ -110,7 +110,7 @@ def dprint(msg):
if options.debug:
print msg
-class SkypeApi():
+class SkypeApi:
def __init__(self):
self.skype = Skype4Py.Skype()
self.skype.OnNotify = self.recv