--- a/web/views/staticcontrollers.py Thu Oct 01 11:40:23 2015 +0200
+++ b/web/views/staticcontrollers.py Tue Oct 13 16:57:09 2015 +0200
@@ -140,7 +140,7 @@
"""return the filepath that will be used to cache concatenation of `paths`
"""
_, ext = osp.splitext(paths[0])
- fname = 'cache_concat_' + hashlib.md5(';'.join(paths)).hexdigest() + ext
+ fname = 'cache_concat_' + hashlib.md5((';'.join(paths)).encode('ascii')).hexdigest() + ext
return osp.join(self.config.appdatahome, 'uicache', fname)
def concat_cached_filepath(self, paths):