Mercurial > hg-stable
changeset 29419:01c0324acfec
largefiles: fix misleading comments in lfutil instore and storepath
Problem in both cases is cache in largefiles has assigned
meaning - user cache which is additional place to get/put
files. Those two function works on store - the main place
to store largefiles in the repository - .hg/largefiles and
using "cache" to describe it is misleading.
author | liscju <piotr.listkiewicz@gmail.com> |
---|---|
date | Fri, 24 Jun 2016 09:08:16 +0200 |
parents | bcefb25acf52 |
children | e5c91dc909f7 |
files | hgext/largefiles/lfutil.py |
diffstat | 1 files changed, 2 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/largefiles/lfutil.py Sat Jun 25 19:10:46 2016 -0700 +++ b/hgext/largefiles/lfutil.py Fri Jun 24 09:08:16 2016 +0200 @@ -190,12 +190,11 @@ if rev is not None or repo.dirstate[f] != '?'] def instore(repo, hash, forcelocal=False): - '''Return true if a largefile with the given hash exists in the user - cache.''' + '''Return true if a largefile with the given hash exists in the store''' return os.path.exists(storepath(repo, hash, forcelocal)) def storepath(repo, hash, forcelocal=False): - '''Return the correct location in the repository largefiles cache for a + '''Return the correct location in the repository largefiles store for a file with the given hash.''' if not forcelocal and repo.shared(): return repo.vfs.reljoin(repo.sharedpath, longname, hash)