# HG changeset patch # User Matt Harbison # Date 1428176580 14400 # Node ID f33236c9b025e4cc4fc300c9d8ffe6992152dcd2 # Parent e767f5aba8102a90b2d0a6a5b3f8970c4f720bd6 largefiles: drop os.path reference in lfutil.storepath() localrepo.join() can concatenate multiple parts on its own. diff -r e767f5aba810 -r f33236c9b025 hgext/largefiles/lfutil.py --- a/hgext/largefiles/lfutil.py Sat Apr 04 11:24:48 2015 -0700 +++ b/hgext/largefiles/lfutil.py Sat Apr 04 15:43:00 2015 -0400 @@ -168,7 +168,7 @@ return os.path.exists(storepath(repo, hash)) def storepath(repo, hash): - return repo.join(os.path.join(longname, hash)) + return repo.join(longname, hash) def copyfromcache(repo, hash, filename): '''Copy the specified largefile from the repo or system cache to