diff options
author | Lance Stout <lancestout@gmail.com> | 2012-03-05 11:30:36 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-03-05 11:30:36 -0800 |
commit | d41ada6b66e4fb1b447c2f6aa4f0e227429afbbf (patch) | |
tree | d00eebbdfd48163c1ecd9b339642141001c73353 | |
parent | fdfe2cd64f36ea467b7cf469b1e078bd2eeb34f5 (diff) | |
download | slixmpp-d41ada6b66e4fb1b447c2f6aa4f0e227429afbbf.tar.gz slixmpp-d41ada6b66e4fb1b447c2f6aa4f0e227429afbbf.tar.bz2 slixmpp-d41ada6b66e4fb1b447c2f6aa4f0e227429afbbf.tar.xz slixmpp-d41ada6b66e4fb1b447c2f6aa4f0e227429afbbf.zip |
Cleanup logging when loading a custom plugin.
-rw-r--r-- | sleekxmpp/basexmpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py index 14b99823..dcb90582 100644 --- a/sleekxmpp/basexmpp.py +++ b/sleekxmpp/basexmpp.py @@ -226,7 +226,7 @@ class BaseXMPP(XMLStream): self.plugin[plugin] = getattr(module, plugin)(self, pconfig) # Let XEP/RFC implementing plugins have some extra logging info. - spec = '(CUSTOM) %s' + spec = '(CUSTOM) ' if self.plugin[plugin].xep: spec = "(XEP-%s) " % self.plugin[plugin].xep elif self.plugin[plugin].rfc: |