1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

Fix syntax error

This commit is contained in:
Jocelyn Delalande 2020-04-02 16:52:45 +02:00
parent 698195724a
commit 1833ec4480

View file

@ -41,11 +41,12 @@ init_virtualenv () {
}
pip_install () {
# Werkzeug stuff is workaround https://github.com/spiral-project/ihatemoney/issues/540
sudo /opt/yunohost/ihatemoney/venv/bin/pip install --upgrade \
'gunicorn>=19.3.0' \
'PyMySQL>=0.9,<0.10' \
'ihatemoney>=4,<5' \
'Werkzeug==0.16' \ # Workaround https://github.com/spiral-project/ihatemoney/issues/540
'Werkzeug==0.16' \
}