aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/http/headers.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/http/headers.py')
-rw-r--r--netlib/http/headers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/netlib/http/headers.py b/netlib/http/headers.py
index f64e6200..6eb9db92 100644
--- a/netlib/http/headers.py
+++ b/netlib/http/headers.py
@@ -194,7 +194,7 @@ class Headers(MutableMapping):
return Headers(copy.copy(self.fields))
# Implement the StateObject protocol from mitmproxy
- def get_state(self, short=False):
+ def get_state(self):
return tuple(tuple(field) for field in self.fields)
def load_state(self, state):