Fix typo in Python middleware example.

This commit is contained in:
Samuel Gulliksson
2018-06-28 09:18:26 +05:00
committed by Leonid Bugaev
parent 36a8845ffe
commit 85a7bc1e9a
+1 -1
View File
@@ -55,7 +55,7 @@ def process_stdin():
request_type_id = int(raw_metadata.split(b' ')[0])
log('Request type: {}'.format({
1: 'Request',
2: 'Original Request',
2: 'Original Response',
3: 'Replayed Response'
}[request_type_id]))
log('===================================')