aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http2/frame.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/http2/frame.py')
-rw-r--r--netlib/http2/frame.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/netlib/http2/frame.py b/netlib/http2/frame.py
index b4783a02..f7e60471 100644
--- a/netlib/http2/frame.py
+++ b/netlib/http2/frame.py
@@ -116,7 +116,8 @@ class Frame(object):
self.length = len(self.payload_bytes())
return "\n".join([
- "%s: %s | length: %d | flags: %#x | stream_id: %d" % (direction, self.__class__.__name__, self.length, self.flags, self.stream_id),
+ "%s: %s | length: %d | flags: %#x | stream_id: %d" % (
+ direction, self.__class__.__name__, self.length, self.flags, self.stream_id),
self.payload_human_readable(),
"===============================================================",
])