diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-11-22 12:56:42 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-11-22 12:56:42 +0100 |
commit | 5b349dbbb9c1d41d9bb01e477f77b13542dc0a8c (patch) | |
tree | 1b600545c6998670ca37ff2f70867de736e1673d /saslauthd | |
parent | 74ae6bdb18ee1a0bef0757784b4d701b0a08a6fd (diff) | |
download | pykolab-5b349dbbb9c1d41d9bb01e477f77b13542dc0a8c.tar.gz |
Accept any arguments passed on to signal handlers
Diffstat (limited to 'saslauthd')
-rw-r--r-- | saslauthd/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/saslauthd/__init__.py b/saslauthd/__init__.py index c0951cb..5b0e65f 100644 --- a/saslauthd/__init__.py +++ b/saslauthd/__init__.py @@ -154,10 +154,10 @@ class SASLAuthDaemon(object): clientsocket.close() - def reload_config(self): + def reload_config(self, *args, **kw): pass - def remove_pid(self): + def remove_pid(self, *args, **kw): if os.access(conf.pidfile, os.R_OK): os.remove(conf.pidfile) raise SystemExit |