etwist/server.py
changeset 7309 22403d5c3da4
parent 7283 1699393372b3
child 7344 5290b5c586ec
--- a/etwist/server.py	Wed May 04 12:25:50 2011 +0200
+++ b/etwist/server.py	Thu May 05 12:50:21 2011 +0200
@@ -171,7 +171,7 @@
     def __init__(self, config, paths):
         _, ext = osp.splitext(paths[0])
         # create a unique / predictable filename
-        fname = hashlib.md5(';'.join(paths)).hexdigest() + ext
+        fname = 'cache_concat_' + hashlib.md5(';'.join(paths)).hexdigest() + ext
         filepath = osp.join(config.appdatahome, 'uicache', fname)
         LongTimeExpiringFile.__init__(self, config, filepath)
         self._concat_cached_filepath(filepath, paths)