summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/port_from_sqlite_to_postgres.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/port_from_sqlite_to_postgres.py b/scripts/port_from_sqlite_to_postgres.py
index fc1603c1c9..f4b6ed0681 100644
--- a/scripts/port_from_sqlite_to_postgres.py
+++ b/scripts/port_from_sqlite_to_postgres.py
@@ -268,7 +268,7 @@ class CursesProgress(Progress):
 
         if self.finished:
             self.stdscr.addstr(
-                self.rows-1, 0 ,
+                self.rows-1, 0,
                 "Press any key to exit...",
             )
 
@@ -561,7 +561,6 @@ if __name__ == "__main__":
 
     args = parser.parse_args()
 
-
     logging_config = {
         "level": logging.DEBUG if args.v else logging.INFO,
         "format": "%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(message)s"