##// END OF EJS Templates
largefiles: use ui.configpath() where appropriate
Greg Ward -
r15350:8b8dd132 stable
parent child Browse files
Show More
@@ -81,7 +81,7 b' def link(src, dest):'
81 81 os.chmod(dest, os.stat(src).st_mode)
82 82
83 83 def usercachepath(ui, hash):
84 path = ui.config(longname, 'usercache', None)
84 path = ui.configpath(longname, 'usercache', None)
85 85 if path:
86 86 path = os.path.join(path, hash)
87 87 else:
General Comments 0
You need to be logged in to leave comments. Login now