diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-02-24 13:28:26 +0000 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2012-02-24 13:28:26 +0000 |
commit | 8e8f0ce73e30e07f6edc9089bdc8f3445fbc57bc (patch) | |
tree | 77f35b56f0ddc6e9ad1cc59ffa00f9548a8a0a75 | |
parent | c81b96a5c629dc20cc4a79eda9f124e78f807ea6 (diff) | |
download | pykolab-8e8f0ce73e30e07f6edc9089bdc8f3445fbc57bc.tar.gz |
Remove additional print statement
-rw-r--r-- | pykolab/plugins/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pykolab/plugins/__init__.py b/pykolab/plugins/__init__.py index 2dff5b8..d308b6a 100644 --- a/pykolab/plugins/__init__.py +++ b/pykolab/plugins/__init__.py @@ -227,7 +227,7 @@ class KolabPlugins(object): if hasattr(getattr(self,plugin),hook): try: log.debug(_("Executing hook %s for plugin %s") %(hook,plugin), level=8) - print "retval = self.%s.%s(%r, %r)" %(plugin,hook, args, kw) + #print "retval = self.%s.%s(%r, %r)" %(plugin,hook, args, kw) exec("retval = self.%s.%s(*args, **kw)" %(plugin,hook)) except TypeError, e: log.error(_("Cannot execute hook %s for plugin %s: %s") %(hook,plugin,e)) |