--- a/hgext/largefiles/localstore.py Thu Oct 13 15:15:32 2011 +0200
+++ b/hgext/largefiles/localstore.py Wed Oct 12 20:59:27 2011 -0400
@@ -6,7 +6,7 @@
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
-'''Store class for local filesystem.'''
+'''store class for local filesystem'''
import os
@@ -17,17 +17,17 @@
import basestore
class localstore(basestore.basestore):
- '''Because there is a system wide cache, the local store always uses that
- cache. Since the cache is updated elsewhere, we can just read from it here
- as if it were the store.'''
+ '''Because there is a system-wide cache, the local store always
+ uses that cache. Since the cache is updated elsewhere, we can
+ just read from it here as if it were the store.'''
def __init__(self, ui, repo, remote):
url = os.path.join(remote.path, '.hg', lfutil.longname)
super(localstore, self).__init__(ui, repo, util.expandpath(url))
def put(self, source, filename, hash):
- '''Any file that is put must already be in the system wide cache so do
- nothing.'''
+ '''Any file that is put must already be in the system-wide
+ cache so do nothing.'''
return
def exists(self, hash):