Merge pull request #1494 from niphlod/fix/appadmin

fix issue with regex
This commit is contained in:
mdipierro
2016-10-07 11:17:45 -05:00
committed by GitHub
+1 -1
View File
@@ -310,7 +310,7 @@ def site():
regex = re.compile('^\w+$')
if is_manager():
apps = [a for a in os.listdir(apath(r=request)) if regex.match(f) and
apps = [a for a in os.listdir(apath(r=request)) if regex.match(a) and
a != '__pycache__']
else:
apps = [a.name for a in db(db.app.owner == auth.user_id).select()]