Merge pull request #1489 from niphlod/fix/appadmin

remove __pycache__ from the list of apps
This commit is contained in:
mdipierro
2016-10-04 19:39:50 -05:00
committed by GitHub
+4 -3
View File
@@ -310,12 +310,13 @@ def site():
regex = re.compile('^\w+$')
if is_manager():
apps = [f for f in os.listdir(apath(r=request)) if regex.match(f)]
apps = [a for a in os.listdir(apath(r=request)) if regex.match(f) and
a != '__pycache__']
else:
apps = [f.name for f in db(db.app.owner == auth.user_id).select()]
apps = [a.name for a in db(db.app.owner == auth.user_id).select()]
if FILTER_APPS:
apps = [f for f in apps if f in FILTER_APPS]
apps = [a for a in apps if a in FILTER_APPS]
apps = sorted(apps, key=lambda a: a.upper())
myplatform = platform.python_version()