# HG changeset patch # User FUJIWARA Katsunori # Date 1490981568 -32400 # Node ID c03af6b4484671c1aa14a5e596cecb7c2f5f2173 # Parent dd2079fae0036fdd745150363752bf6703d355ae largefiles: remove unused keyword argument of copytostore() (API) AFAIK, 'uploaded' argument of copytostore() (or copytocache(), before renaming at c65f5b6e26d4) has been never used both on caller and callee sides, since official release of bundled largefiles extension. diff -r dd2079fae003 -r c03af6b44846 hgext/largefiles/lfutil.py --- a/hgext/largefiles/lfutil.py Sat Apr 01 02:32:48 2017 +0900 +++ b/hgext/largefiles/lfutil.py Sat Apr 01 02:32:48 2017 +0900 @@ -245,7 +245,7 @@ return False return True -def copytostore(repo, revorctx, file, fstandin, uploaded=False): +def copytostore(repo, revorctx, file, fstandin): wvfs = repo.wvfs hash = readasstandin(repo[revorctx][fstandin]) if instore(repo, hash):