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 4fa220850f
commit 25393dc326

View file

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