[PATCH 1 of 9 remotefilelog-ext getfile-http] remotefilelog: stop declaring remotefilelog to be an hg-internal extension

Augie Fackler raf at durin42.com
Wed Jul 1 20:05:38 UTC 2015


# HG changeset patch
# User Augie Fackler <augie at google.com>
# 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'):


More information about the Mercurial-devel mailing list