Fix failure of installing magnum-ui plugin with devstack

Change-Id: I97fb280d2903a9e3277f5dc2fd96fd3ecde513d9
Closes-Bug: 1858392
This commit is contained in:
xiaojueguan 2020-01-06 16:28:28 +08:00
parent 5623ab2e03
commit be60e830ec
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ function configure_magnum_ui {
# NOTE: If locale directory does not exist, compilemessages will fail, # NOTE: If locale directory does not exist, compilemessages will fail,
# so check for an existence of locale directory is required. # so check for an existence of locale directory is required.
if [ -d ${MAGNUM_UI_DIR}/magnum_ui/locale ]; then if [ -d ${MAGNUM_UI_DIR}/magnum_ui/locale ]; then
(cd ${MAGNUM_UI_DIR}/magnum_ui; DJANGO_SETTINGS_MODULE=openstack_dashboard.settings ../manage.py compilemessages) (cd ${MAGNUM_UI_DIR}/magnum_ui; DJANGO_SETTINGS_MODULE=openstack_dashboard.settings $PYTHON ../manage.py compilemessages)
fi fi
} }