diff --git a/fishbook/database/database.py b/fishbook/database/database.py index a75adf9..19268a9 100644 --- a/fishbook/database/database.py +++ b/fishbook/database/database.py @@ -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)