Skip to content

Commit

Permalink
Fix 4 checkLen tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
alga committed Mar 13, 2013
1 parent 1be1643 commit cec7720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZEO/StorageServer.py
Expand Up @@ -636,7 +636,7 @@ def _store(self, oid, serial, data, blobfile=None):
self._op_error(oid, error, 'store')
err = error
else:
if serial != "\0\0\0\0\0\0\0\0":
if serial != b"\0\0\0\0\0\0\0\0":
self.invalidated.append(oid)

if isinstance(newserial, bytes):
Expand Down

0 comments on commit cec7720

Please sign in to comment.