Compare commits

...

2 Commits

Author SHA1 Message Date
mdipierro
0aade6b378 R-2.10.2 2015-03-31 22:26:25 -05:00
mdipierro
5b75130187 quick fix for cacheondisk problem and admin 2015-03-31 22:25:10 -05:00
3 changed files with 4 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
## 2.10.1
## 2.10.1-2.10.2
- welcome app defaults to Bootstrap 3
- DAL -> pyDAL (thanks Giovanni, Niphlod, Paolo)

View File

@@ -1 +1 @@
Version 2.10.1-stable+timestamp.2015.03.31.15.15.31
Version 2.10.2-stable+timestamp.2015.03.31.22.25.23

View File

@@ -21,6 +21,7 @@ from gluon.fileutils import up, fix_newlines, abspath, recursive_unlink
from gluon.fileutils import read_file, write_file, parse_version
from gluon.restricted import RestrictedError
from gluon.settings import global_settings
from gluon.cache import CacheOnDisk
if not global_settings.web2py_runtime_gae:
@@ -117,6 +118,7 @@ def app_cleanup(app, request):
r = False
# Remove cache files
CacheOnDisk(folder=apath('%s/cache/' % app, request)).clear()
path = apath('%s/cache/' % app, request)
if os.path.exists(path):
for f in os.listdir(path):