diff options
-rwxr-xr-x | malimporter/malimporter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/malimporter/malimporter.py b/malimporter/malimporter.py index 2d28771..0f257a9 100755 --- a/malimporter/malimporter.py +++ b/malimporter/malimporter.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 """ -malimporter.py is part of animedb. The purpose of this program is to import an +malimporter.py is part of animedb. The purpose of this program is to import a MAL XML export into a database for use by animedb. Copyright (C) 2018 Daniel Jones daniel@danieljon.es This program is free software; you can redistribute it and/or @@ -186,7 +186,7 @@ if __name__ == "__main__": # insert meta data into the database dbinsertmetadata(db); - #insert anime data into the database + # insert anime data into the database dbinsertanimedata(db, animelist); # commit and close db |