summaryrefslogtreecommitdiff
path: root/kombu/asynchronous/debug.py
diff options
context:
space:
mode:
authorOmer Katz <omer.drow@gmail.com>2020-08-04 17:27:37 +0300
committerOmer Katz <omer.drow@gmail.com>2020-08-04 17:37:29 +0300
commit85578afc4fea28adc16afdd3d7418b240357d96e (patch)
tree81f7b78cc160aadba8eec61babc5a79b2f42a612 /kombu/asynchronous/debug.py
parenta130c4636796623aa038848202b02c1a549c1312 (diff)
downloadkombu-remove-python2-support.tar.gz
Diffstat (limited to 'kombu/asynchronous/debug.py')
-rw-r--r--kombu/asynchronous/debug.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kombu/asynchronous/debug.py b/kombu/asynchronous/debug.py
index 1cbf61db..a77ade3b 100644
--- a/kombu/asynchronous/debug.py
+++ b/kombu/asynchronous/debug.py
@@ -7,8 +7,8 @@ from kombu.utils.functional import reprcall
def repr_flag(flag):
"""Return description of event loop flag."""
return '{}{}{}'.format('R' if flag & READ else '',
- 'W' if flag & WRITE else '',
- '!' if flag & ERR else '')
+ 'W' if flag & WRITE else '',
+ '!' if flag & ERR else '')
def _rcb(obj):