summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-04-17 12:46:29 +0100
committerErik Johnston <erik@matrix.org>2015-04-17 12:46:29 +0100
commitdfc46c6220b7439262de6fc7034e7a6df99d4e40 (patch)
tree26b8e90a02576b0a5b695a87f38b46de653fe132 /scripts
parentMerge branch 'develop' of github.com:matrix-org/synapse into postgres (diff)
downloadsynapse-dfc46c6220b7439262de6fc7034e7a6df99d4e40.tar.xz
PEP8
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"