largefiles: fix misleading comments in lfutil instore and storepath
authorliscju <piotr.listkiewicz@gmail.com>
Fri, 24 Jun 2016 09:08:16 +0200
changeset 29419 01c0324acfec
parent 29418 bcefb25acf52
child 29420 e5c91dc909f7
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.
hgext/largefiles/lfutil.py
--- 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)