mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2025-01-30 14:58:38 +00:00
fix #966
This commit is contained in:
parent
bfbcbfd737
commit
679c97ec3e
@ -22,7 +22,7 @@ def flowdetails(state, flow):
|
||||
if sc is not None:
|
||||
text.append(urwid.Text([("head", "Server Connection:")]))
|
||||
parts = [
|
||||
["Address", "%s:%s" % sc.address()],
|
||||
["Address", repr(sc.address)],
|
||||
]
|
||||
|
||||
text.extend(
|
||||
@ -79,8 +79,7 @@ def flowdetails(state, flow):
|
||||
text.append(urwid.Text([("head", "Client Connection:")]))
|
||||
|
||||
parts = [
|
||||
["Address", "%s:%s" % cc.address()],
|
||||
# ["Requests", "%s"%cc.requestcount],
|
||||
["Address", repr(cc.address)],
|
||||
]
|
||||
|
||||
text.extend(
|
||||
|
Loading…
Reference in New Issue
Block a user