diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-11-21 17:40:36 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-11-21 17:40:36 +0100 |
commit | 9e29b36f4cb2fdd716e1c4713607e1962383da60 (patch) | |
tree | 7c784bee5d08cb8a3f953024dc5913eb0d014f35 /kolabd/__init__.py | |
parent | 66b6626f4cbf07a0ca7ff58fa5ed7f209094107e (diff) | |
download | pykolab-9e29b36f4cb2fdd716e1c4713607e1962383da60.tar.gz |
We don't actually care about the parameters sent by signal handlers, but we must accept the correct number of parameters.
Fixes #516
Diffstat (limited to 'kolabd/__init__.py')
-rw-r--r-- | kolabd/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kolabd/__init__.py b/kolabd/__init__.py index c749ae6..95ef85a 100644 --- a/kolabd/__init__.py +++ b/kolabd/__init__.py @@ -142,10 +142,10 @@ class KolabDaemon(object): ) domain_auth[primary_domain].synchronize(primary_domain, secondary_domains) - 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 |