diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-07-21 16:29:07 +0100 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-07-21 16:29:07 +0100 |
commit | 51b908348e16125c458b7b5d0a97839085b1d83f (patch) | |
tree | 2fb53d68d70094f894786d3994410cc5bc1ffc5b | |
parent | 93129fb06421520f967e80e2f14149e0d4219a3a (diff) | |
download | poezio-51b908348e16125c458b7b5d0a97839085b1d83f.tar.gz poezio-51b908348e16125c458b7b5d0a97839085b1d83f.tar.bz2 poezio-51b908348e16125c458b7b5d0a97839085b1d83f.tar.xz poezio-51b908348e16125c458b7b5d0a97839085b1d83f.zip |
Simplify double negation.
-rw-r--r-- | poezio/core/handlers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/poezio/core/handlers.py b/poezio/core/handlers.py index 9fe42a0d..e38fcbda 100644 --- a/poezio/core/handlers.py +++ b/poezio/core/handlers.py @@ -315,7 +315,7 @@ class HandlerCore: delayed, date = common.find_delayed_tag(message) def try_modify(): - if not message.xml.find('{urn:xmpp:message-correct:0}replace') is not None: + if message.xml.find('{urn:xmpp:message-correct:0}replace') is None: return False replaced_id = message['replace']['id'] if replaced_id and config.get_by_tabname('group_corrections', |