JC1869
Results
1
comments of
JC1869
I was able to fix this with the added s.rstrip('&') in interceptor.py: def _cgi_to_dict(s): s=s.rstrip('&') if '=' in s: return dict([y.strip() for y in x.split('=')] for x in s.split('&')) return...