diff options
Diffstat (limited to 'malimporter')
-rwxr-xr-x | malimporter/malimporter.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/malimporter/malimporter.py b/malimporter/malimporter.py index 7b0c377..f23a68e 100755 --- a/malimporter/malimporter.py +++ b/malimporter/malimporter.py @@ -130,14 +130,14 @@ def dbinsertanimedata(db, animelist): anime.status, anime.notes]); db.executemany("INSERT INTO anime ('animeid', " \ - "'title', " \ - "'episodes', " \ - "'type', " \ - "'watched', " \ - "'score', " \ - "'status', " \ - "'notes') " \ - "VALUES(?, ?, ?, ?, ?, ?, ?, ?)", animedata); + "'title', " \ + "'episodes', " \ + "'type', " \ + "'watched', " \ + "'score', " \ + "'status', " \ + "'notes') " \ + "VALUES(?, ?, ?, ?, ?, ?, ?, ?)", animedata); if __name__ == "__main__": |