# HG changeset patch # User Mads Kiilerich # Date 2015-02-19 00:16:00 # Node ID 4aa02271dc1349d54bdc908f46d89fc9db179116 # Parent 98d235e2807878688ac3a69fcdef2359c14e5da3 hgcompat: workaround for not calling largefiles reposetup correctly after 94ac64bcf6fe (Mercurial 3.3) diff --git a/kallithea/lib/vcs/utils/hgcompat.py b/kallithea/lib/vcs/utils/hgcompat.py --- a/kallithea/lib/vcs/utils/hgcompat.py +++ b/kallithea/lib/vcs/utils/hgcompat.py @@ -41,3 +41,6 @@ if inspect.getargspec(memfilectx.__init_ def _memfilectx__init__(self, repo, *a, **b): return _org__init__(self, *a, **b) memfilectx.__init__ = _memfilectx__init__ + +# workaround for 3.3 94ac64bcf6fe and not calling largefiles reposetup correctly +localrepository._lfstatuswriters = [lambda *msg, **opts: None] diff --git a/kallithea/templates/summary/summary.html b/kallithea/templates/summary/summary.html --- a/kallithea/templates/summary/summary.html +++ b/kallithea/templates/summary/summary.html @@ -41,7 +41,7 @@ <%block name="head_extra"> - +