Fix incorrect construction of MySQL SQLAlchemy URL

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-05-13 21:05:34 -07:00
parent 923e924497
commit 6ed938ad6c

View file

@ -26,7 +26,6 @@ def get_sqlalchemy_url():
database=aurweb.config.get('database', 'name'),
query={
'unix_socket': aurweb.config.get('database', 'socket'),
'buffered': True,
},
)
elif aur_db_backend == 'sqlite':