Skip to content
Snippets Groups Projects
Commit 64aedeb30625 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

topic: fix compatibility with 4.3

A compatibility fixes ended up being overlooked, we are bringing it back into
the main branch.
parent d7dc6633bba1
No related branches found
No related tags found
No related merge requests found
Changelog
=========
7.1.1 - in progress
-------------------
topic (0.6.1)
* fix compatibility with Mercurial-4.3
7.1.0 -- 2017-12-12
-------------------
......
......@@ -181,6 +181,9 @@
buglink = 'https://bz.mercurial-scm.org/'
if util.safehasattr(registrar, 'configitem'):
from mercurial import configitems
configtable = {}
configitem = registrar.configitem(configtable)
......@@ -200,7 +203,7 @@
default=False,
)
configitem('experimental', 'topic-mode.server',
default=configitem.dynamicdefault,
default=configitems.dynamicdefault,
)
def extsetup(ui):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment