Fix missing index key in prefix extractor example
This commit is contained in:
parent
8f75fce0a8
commit
896538db3a
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ So always the first 5 bytes are used as the prefix ::
|
|||
it.seek(prefix)
|
||||
|
||||
# prints {b'00002.z': b'z', b'00002.y': b'y', b'00002.x': b'x'}
|
||||
print dict(itertools.takewhile(lambda item: item[].startswith(prefix), it))
|
||||
print dict(itertools.takewhile(lambda item: item[0].startswith(prefix), it))
|
||||
|
||||
|
||||
Backup And Restore
|
||||
|
|
Loading…
Reference in a new issue