##// END OF EJS Templates
largefiles: lowercase messages
Martin Geisler -
r16928:73b9286e default
parent child Browse files
Show More
@@ -115,10 +115,10 def inusercache(ui, hash):
115 115
116 116 def findfile(repo, hash):
117 117 if instore(repo, hash):
118 repo.ui.note(_('Found %s in store\n') % hash)
118 repo.ui.note(_('found %s in store\n') % hash)
119 119 return storepath(repo, hash)
120 120 elif inusercache(repo.ui, hash):
121 repo.ui.note(_('Found %s in system cache\n') % hash)
121 repo.ui.note(_('found %s in system cache\n') % hash)
122 122 path = storepath(repo, hash)
123 123 util.makedirs(os.path.dirname(path))
124 124 link(usercachepath(repo.ui, hash), path)
@@ -43,7 +43,7 class localstore(basestore.basestore):
43 43 path = lfutil.usercachepath(self.ui, hash)
44 44 else:
45 45 raise basestore.StoreError(filename, hash, '',
46 _("Can't get file locally"))
46 _("can't get file locally"))
47 47 fd = open(path, 'rb')
48 48 try:
49 49 return lfutil.copyandhash(fd, tmpfile)
@@ -49,7 +49,7 but there is no cache file for it. So,
49 49 $ hg update
50 50 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
51 51 getting changed largefiles
52 large: Can't get file locally
52 large: can't get file locally
53 53 (no default or default-push path set in hgrc)
54 54 0 largefiles updated, 0 removed
55 55 $ hg status
@@ -67,7 +67,7 Update working directory to tip, again.
67 67 $ hg update
68 68 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
69 69 getting changed largefiles
70 large: Can't get file locally
70 large: can't get file locally
71 71 (no default or default-push path set in hgrc)
72 72 0 largefiles updated, 0 removed
73 73 $ hg status
General Comments 0
You need to be logged in to leave comments. Login now