From b1a2d4ddf442a2f6c2a373a643219b87e715c859 Mon Sep 17 00:00:00 2001 From: lian Date: Thu, 2 Jul 2020 16:20:18 +0800 Subject: [PATCH] fix bug --- scripts/sqlite2mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sqlite2mysql.py b/scripts/sqlite2mysql.py index 9e9c2e2..8b30985 100644 --- a/scripts/sqlite2mysql.py +++ b/scripts/sqlite2mysql.py @@ -79,4 +79,4 @@ for line in fileinput.input(): line = line.replace('"', '`') line = line.replace('AUTOINCREMENT', 'AUTO_INCREMENT') - print(line, end=' ') + print(line)