mirror of
https://github.com/beetbox/beets.git
synced 2026-02-21 14:56:02 +01:00
typo: >=, not >
This commit is contained in:
parent
44bcc5b3bd
commit
2d20e3582b
1 changed files with 1 additions and 1 deletions
|
|
@ -241,7 +241,7 @@ def submit_items(userkey, items, chunksize=64):
|
|||
data.append(item_data)
|
||||
|
||||
# If we have enough data, submit a chunk.
|
||||
if len(data) > chunksize:
|
||||
if len(data) >= chunksize:
|
||||
submit_chunk()
|
||||
|
||||
# Submit remaining data in a final chunk.
|
||||
|
|
|
|||
Loading…
Reference in a new issue