##// END OF EJS Templates
fixed comments issue on non-ascii file names
marcink -
r2148:ad127a5c beta
parent child Browse files
Show More
@@ -68,7 +68,7 b' def FID(raw_id, path):'
68 :param path:
68 :param path:
69 """
69 """
70
70
71 return 'C-%s-%s' % (short_id(raw_id), md5(path).hexdigest()[:12])
71 return 'C-%s-%s' % (short_id(raw_id), md5(safe_str(path)).hexdigest()[:12])
72
72
73
73
74 def get_token():
74 def get_token():
General Comments 0
You need to be logged in to leave comments. Login now