mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[fix] Allow - in app id when parsing app instance name
This commit is contained in:
parent
853f5d65d9
commit
6ad0083f04
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ re_github_repo = re.compile(
|
|||
)
|
||||
|
||||
re_app_instance_name = re.compile(
|
||||
r'^(?P<appid>[\w]+?)(__(?P<appinstancenb>[1-9][0-9]*))?$'
|
||||
r'^(?P<appid>[\w-]+?)(__(?P<appinstancenb>[1-9][0-9]*))?$'
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue