mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] multi_instance manifest key is generally a string
This commit is contained in:
parent
564e2c6503
commit
fab1ddf7bb
1 changed files with 1 additions and 1 deletions
|
@ -1393,7 +1393,7 @@ def _check_manifest_requirements(manifest):
|
|||
"use 'requirements' instead.")
|
||||
|
||||
# Validate multi-instance app
|
||||
if manifest.get('multi_instance', False):
|
||||
if is_true(manifest.get('multi_instance', False)):
|
||||
# Handle backward-incompatible change introduced in yunohost >= 2.3.6
|
||||
# See https://dev.yunohost.org/issues/156
|
||||
yunohost_req = requirements.get('yunohost', None)
|
||||
|
|
Loading…
Add table
Reference in a new issue