diff options
author | mathieui <mathieui@mathieui.net> | 2012-02-09 11:08:14 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2012-02-09 11:08:14 +0100 |
commit | 42c8deb9e19bde492c3f17d8f07f5b277eee4d04 (patch) | |
tree | d10d13cc22ef267460072d06bfb1951506b31b7f /plugins/gpg | |
parent | 93c17f8ece0681592aeacd2ac541ba7d2194ebf5 (diff) | |
download | poezio-42c8deb9e19bde492c3f17d8f07f5b277eee4d04.tar.gz poezio-42c8deb9e19bde492c3f17d8f07f5b277eee4d04.tar.bz2 poezio-42c8deb9e19bde492c3f17d8f07f5b277eee4d04.tar.xz poezio-42c8deb9e19bde492c3f17d8f07f5b277eee4d04.zip |
Remove some debugging prints
Diffstat (limited to 'plugins/gpg')
-rw-r--r-- | plugins/gpg/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/gpg/__init__.py b/plugins/gpg/__init__.py index 620a4589..00d896cd 100644 --- a/plugins/gpg/__init__.py +++ b/plugins/gpg/__init__.py @@ -158,7 +158,6 @@ class Plugin(BasePlugin): if jid.full not in self.contacts.keys(): return '' status = self.contacts[jid.full] - self.core.information('%s' % (status,)) if status in ('valid', 'invalid', 'signed'): return ' GPG Key: %s (%s)' % (status, 'encrypted' if status == 'valid' else 'NOT encrypted',) else: |