From patchwork Wed Jul 1 20:01:00 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [remotefilelog-ext, testedwith-correction] remotefilelog: stop declaring remotefilelog to be an hg-internal extension From: Augie Fackler X-Patchwork-Id: 9851 Message-Id: <1c32d8e66680973b2a88.1435780860@arthedain.pit.corp.google.com> To: durham@fb.com Cc: mercurial-devel@selenic.com Date: Wed, 01 Jul 2015 16:01:00 -0400 # HG changeset patch # User Augie Fackler # Date 1435780724 14400 # Wed Jul 01 15:58:44 2015 -0400 # Node ID 1c32d8e66680973b2a88501ca011bc7d0de46711 # Parent 0b1c8aee65839b5515c2a203d51b2d7fe9ed057b remotefilelog: stop declaring remotefilelog to be an hg-internal extension The magic string 'internal' causes Mercurial to never blame remotefilelog for being broken. I had suspected that remotefilelog might work with 3.4, but the tests fail against 3.4.1, so I'm just making testedwith empty. diff --git a/remotefilelog/__init__.py b/remotefilelog/__init__.py --- a/remotefilelog/__init__.py +++ b/remotefilelog/__init__.py @@ -23,7 +23,7 @@ import stat cmdtable = {} command = cmdutil.command(cmdtable) -testedwith = 'internal' +testedwith = '' repoclass = localrepo.localrepository if util.safehasattr(repoclass, '_basesupported'):