aboutsummaryrefslogtreecommitdiff
path: root/instance
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2021-07-03 23:39:36 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2021-07-03 23:39:36 +0200
commit020ec4276ad23bd6618ff196c2e517b4990b1abf (patch)
treec8d760dace7271d0cb4b4033b0ec7babc7954bc4 /instance
parentupdated Python dependencies. (diff)
downloadnewspipe-020ec4276ad23bd6618ff196c2e517b4990b1abf.tar.gz
newspipe-020ec4276ad23bd6618ff196c2e517b4990b1abf.tar.bz2
newspipe-020ec4276ad23bd6618ff196c2e517b4990b1abf.zip
fixed name of protocol in the database URI configuration variable
Diffstat (limited to 'instance')
-rw-r--r--instance/config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance/config.py b/instance/config.py
index 89655edf..577c1659 100644
--- a/instance/config.py
+++ b/instance/config.py
@@ -22,7 +22,7 @@ DB_CONFIG_DICT = {
"port": 5432,
}
DATABASE_NAME = "postgres"
-SQLALCHEMY_DATABASE_URI = "postgres://{user}:{password}@{host}:{port}/{name}".format(
+SQLALCHEMY_DATABASE_URI = "postgresql://{user}:{password}@{host}:{port}/{name}".format(
name=DATABASE_NAME, **DB_CONFIG_DICT
)
bgstack15