mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge branch 'dev' into bullseye
This commit is contained in:
commit
38ea29afd1
1 changed files with 3 additions and 3 deletions
|
@ -62,12 +62,12 @@ from yunohost.utils.i18n import _value_for_locale
|
||||||
from yunohost.utils.error import YunohostError, YunohostValidationError
|
from yunohost.utils.error import YunohostError, YunohostValidationError
|
||||||
from yunohost.utils.filesystem import free_space_in_directory
|
from yunohost.utils.filesystem import free_space_in_directory
|
||||||
from yunohost.log import is_unit_operation, OperationLogger
|
from yunohost.log import is_unit_operation, OperationLogger
|
||||||
from yunohost.app_catalog import (
|
from yunohost.app_catalog import ( # noqa
|
||||||
app_catalog,
|
app_catalog,
|
||||||
app_search,
|
app_search,
|
||||||
_load_apps_catalog,
|
_load_apps_catalog,
|
||||||
app_fetchlist,
|
app_fetchlist,
|
||||||
) # noqa
|
)
|
||||||
|
|
||||||
logger = getActionLogger("yunohost.app")
|
logger = getActionLogger("yunohost.app")
|
||||||
|
|
||||||
|
@ -2322,7 +2322,7 @@ def _make_environment_for_app_script(
|
||||||
return env_dict
|
return env_dict
|
||||||
|
|
||||||
|
|
||||||
def _parse_app_instance_name(app_instance_name):
|
def _parse_app_instance_name(app_instance_name: str) -> Tuple[str, int]:
|
||||||
"""
|
"""
|
||||||
Parse a Yunohost app instance name and extracts the original appid
|
Parse a Yunohost app instance name and extracts the original appid
|
||||||
and the application instance number
|
and the application instance number
|
||||||
|
|
Loading…
Add table
Reference in a new issue