summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaniel-Jones <daniel@danieljon.es>2018-06-05 12:52:33 +0930
committerdaniel-Jones <daniel@danieljon.es>2018-06-05 12:52:33 +0930
commitf888d0228fabc61ac026a17e82e82583f9a4390e (patch)
tree126f1cc2a2af353ad1074bd641656f655faf0b2a
parent7da2ed7110c79d0a013ef1f548a8c1b9a37f9966 (diff)
downloadanimedb-f888d0228fabc61ac026a17e82e82583f9a4390e.tar.gz
animedb-f888d0228fabc61ac026a17e82e82583f9a4390e.zip
change some spacing
-rwxr-xr-xmalimporter/malimporter.py16
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__":