Skip to content

Commit

Permalink
fixed typo (ethereum#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
voith authored and pipermerriam committed Mar 6, 2019
1 parent 0acc120 commit 502f936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rlp/sedes/serializable.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def close(self):
if self.__state__ == ChangesetState.OPEN:
self.__state__ = ChangesetState.CLOSED
else:
raise ValueError("Cannot open Changeset which is not in the INITIALIZED state")
raise ValueError("Cannot close Changeset which is not in the OPEN state")

def __enter__(self):
if self.__state__ == ChangesetState.INITIALIZED:
Expand Down

0 comments on commit 502f936

Please sign in to comment.