Commit 4537a8af authored by Jim Fulton's avatar Jim Fulton

Fixed typo in error string.

parent 281ddf84
...@@ -1220,7 +1220,7 @@ class ClientStorage(object): ...@@ -1220,7 +1220,7 @@ class ClientStorage(object):
self.finish_verification() self.finish_verification()
return "no verification" return "no verification"
elif ltid < last_inval_tid: elif ltid < last_inval_tid:
message = "Client has seen newer trasnactions than server!" message = "Client has seen newer transactions than server!"
log2(message, level=logging.CRITICAL) log2(message, level=logging.CRITICAL)
raise ClientStorageError(message) raise ClientStorageError(message)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment