##// END OF EJS Templates
largefiles: drop os.path reference in lfutil.storepath()...
Matt Harbison -
r24627:f33236c9 default
parent child Browse files
Show More
@@ -168,7 +168,7 b' def instore(repo, hash):'
168 return os.path.exists(storepath(repo, hash))
168 return os.path.exists(storepath(repo, hash))
169
169
170 def storepath(repo, hash):
170 def storepath(repo, hash):
171 return repo.join(os.path.join(longname, hash))
171 return repo.join(longname, hash)
172
172
173 def copyfromcache(repo, hash, filename):
173 def copyfromcache(repo, hash, filename):
174 '''Copy the specified largefile from the repo or system cache to
174 '''Copy the specified largefile from the repo or system cache to
General Comments 0
You need to be logged in to leave comments. Login now