Fixed syntax error

This commit is contained in:
Antoine Nguyen
2022-09-15 10:44:46 +02:00
parent 23ac0bf172
commit 1662b14ccc

View File

@@ -88,7 +88,7 @@ class Installer(object):
"dbengine": (
"Pg" if self.dbengine == "postgres" else self.dbengine),
"dbhost": self.dbhost,
"dbport", self.dbport,
"dbport": self.dbport,
}
for option, value in self.config.items("general"):
context[option] = value