fix off-by-one error in progress message
This commit is contained in:
parent
d542641f7d
commit
c4bc3e064a
@ -512,7 +512,7 @@ def drop_tables():
|
||||
|
||||
def populate(datasets, update=False):
|
||||
for i, d in enumerate(datasets):
|
||||
print("Importing %i of %i: %s" % (i, len(datasets), d))
|
||||
print("Importing %i of %i: %s" % (i+1, len(datasets), d))
|
||||
if not populate_datasets(d, update):
|
||||
continue
|
||||
populate_subjects(d)
|
||||
|
Loading…
Reference in New Issue
Block a user