changeset 3198:9c04bd928056 stable

compat: conditionally access config item Version 4.2 and below do not have config items support. So the extensions helper do not register anything.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 20 Oct 2017 18:56:15 +0200
parents ef38b44c08cf
children e11e018e8338
files hgext3rd/evolve/__init__.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext3rd/evolve/__init__.py
+++ b/hgext3rd/evolve/__init__.py
@@ -382,7 +382,8 @@
 eh.configitem('experimental', 'prunestrip')
 
 # hack around because we need an actual default there
-configtable['experimental']['evolution.allnewcommands'].default = None
+if configtable:
+    configtable['experimental']['evolution.allnewcommands'].default = None
 
 # pre hg 4.0 compat