diff options
author | Adrian Tschira <nota@notafile.com> | 2018-04-15 16:39:30 +0200 |
---|---|---|
committer | Adrian Tschira <nota@notafile.com> | 2018-04-15 20:40:47 +0200 |
commit | f63ff73c7fc9e27fa42ac73bf520796ff37bfcc2 (patch) | |
tree | e30c3b41cd4ff3f939e68de053f28ba4edfd30dd /synapse/util | |
parent | Merge branch 'master' of https://github.com/matrix-org/synapse into develop (diff) | |
download | synapse-f63ff73c7fc9e27fa42ac73bf520796ff37bfcc2.tar.xz |
add __bool__ alias to __nonzero__ methods
Signed-off-by: Adrian Tschira <nota@notafile.com>
Diffstat (limited to 'synapse/util')
-rw-r--r-- | synapse/util/logcontext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/util/logcontext.py b/synapse/util/logcontext.py index d660ec785b..d59adc236e 100644 --- a/synapse/util/logcontext.py +++ b/synapse/util/logcontext.py @@ -92,6 +92,7 @@ class LoggingContext(object): def __nonzero__(self): return False + __bool__ = __nonzero__ # python3 sentinel = Sentinel() |