diff options
Diffstat (limited to 'libmproxy/stateobject.py')
-rw-r--r-- | libmproxy/stateobject.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmproxy/stateobject.py b/libmproxy/stateobject.py index 39614c6e..53ccef0e 100644 --- a/libmproxy/stateobject.py +++ b/libmproxy/stateobject.py @@ -15,8 +15,8 @@ class StateObject(object): # A set() of attributes that should be ignored for short state _stateobject_long_attributes = frozenset([]) - def from_state(self): - raise NotImplementedError + def from_state(self, state): + raise NotImplementedError() def get_state(self, short=False): """ |