mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Allow slashes in tags
The wikipedia app uses them, for example.
This commit is contained in:
parent
fb23b2cff4
commit
7a79b000bf
1 changed files with 1 additions and 1 deletions
|
|
@ -531,7 +531,7 @@ class vcs:
|
|||
raise VCSException('gettags not supported for this vcs type')
|
||||
rtags = []
|
||||
for tag in self._gettags():
|
||||
if re.match('[-A-Za-z0-9_. ]+$', tag):
|
||||
if re.match('[-A-Za-z0-9_. /]+$', tag):
|
||||
rtags.append(tag)
|
||||
return rtags
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue