autosort: Fix typo in function name

This commit is contained in:
Felix Breidenstein 2020-04-24 00:29:19 +02:00
parent ed668a1348
commit f9967bad71

View file

@ -45,7 +45,7 @@ def command(profile, dry_run, verbose):
print(f"Automatically matched {len(new)} transactions")
if not dry_run:
session.bulk_save_object(new)
session.bulk_save_objects(new)
session.commit()