diff options
author | daniel-Jones <daniel@danieljon.es> | 2018-06-05 12:52:33 +0930 |
---|---|---|
committer | daniel-Jones <daniel@danieljon.es> | 2018-06-05 12:52:33 +0930 |
commit | f888d0228fabc61ac026a17e82e82583f9a4390e (patch) | |
tree | 126f1cc2a2af353ad1074bd641656f655faf0b2a | |
parent | 7da2ed7110c79d0a013ef1f548a8c1b9a37f9966 (diff) | |
download | animedb-f888d0228fabc61ac026a17e82e82583f9a4390e.tar.gz animedb-f888d0228fabc61ac026a17e82e82583f9a4390e.zip |
change some spacing
-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__": |