hgext3rd/topic/__init__.py
branchstable
changeset 3295 64aedeb30625
parent 3293 d7dc6633bba1
child 3297 4d7e002a2bb5
child 3380 62f742d144da
--- a/hgext3rd/topic/__init__.py	Tue Dec 12 04:16:54 2017 +0100
+++ b/hgext3rd/topic/__init__.py	Thu Dec 14 13:19:56 2017 +0100
@@ -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):