From 7a79b000bffe1cb31061128508b5453f15961399 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 11 Sep 2015 23:17:14 -0700 Subject: [PATCH] Allow slashes in tags The wikipedia app uses them, for example. --- fdroidserver/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdroidserver/common.py b/fdroidserver/common.py index 795de66d..3feaf07a 100644 --- a/fdroidserver/common.py +++ b/fdroidserver/common.py @@ -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