diff --git a/wa/utils/postgres.py b/wa/utils/postgres.py index 19a29f7a..69c4f616 100644 --- a/wa/utils/postgres.py +++ b/wa/utils/postgres.py @@ -243,10 +243,10 @@ def get_schema(schemafilepath): def get_database_schema_version(conn): with conn.cursor() as cursor: cursor.execute('''SELECT - DatabaseMeta.schema_major, - DatabaseMeta.schema_minor - FROM - DatabaseMeta;''') + DatabaseMeta.schema_major, + DatabaseMeta.schema_minor + FROM + DatabaseMeta;''') schema_major, schema_minor = cursor.fetchone() return (schema_major, schema_minor)