Changeset - ad127a5cef73
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 14 years ago 2012-03-21 16:59:59
marcin@python-works.com
fixed comments issue on non-ascii file names
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/helpers.py
Show inline comments
 
@@ -68,7 +68,7 @@ def FID(raw_id, path):
 
    :param path:
 
    """
 

	
 
    return 'C-%s-%s' % (short_id(raw_id), md5(path).hexdigest()[:12])
 
    return 'C-%s-%s' % (short_id(raw_id), md5(safe_str(path)).hexdigest()[:12])
 

	
 

	
 
def get_token():
0 comments (0 inline, 0 general)