Queer European MD passionate about IT
Browse Source

Missing space

Davte 4 years ago
parent
commit
c00fce62aa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      davtelepot/database.py

+ 1 - 1
davtelepot/database.py

@@ -66,7 +66,7 @@ class ObjectWithDatabase(object):
                             f"DROP VIEW IF EXISTS {view['name']}"
                         )
                     db.query(
-                        f"CREATE VIEW IF NOT EXISTS {view['name']}"
+                        f"CREATE VIEW IF NOT EXISTS {view['name']} "
                         f"AS {view['query']}"
                     )
                 except Exception as e: