configitems: register the 'bugzilla.fixregexp' config
authorBoris Feld <boris.feld@octobus.net>
Fri, 07 Jul 2017 10:03:36 +0200
changeset 33399 bab1f3242140
parent 33398 69d85abe4cba
child 33400 76ca5097a2b6
configitems: register the 'bugzilla.fixregexp' config
hgext/bugzilla.py
--- a/hgext/bugzilla.py	Fri Jul 07 10:03:34 2017 +0200
+++ b/hgext/bugzilla.py	Fri Jul 07 10:03:36 2017 +0200
@@ -337,6 +337,9 @@
 configitem('bugzilla', 'db',
     default='bugs',
 )
+configitem('bugzilla', 'fixregexp',
+    default=lambda: bugzilla._default_fix_re,
+)
 
 class bzaccess(object):
     '''Base class for access to Bugzilla.'''
@@ -975,8 +978,7 @@
             self.ui.config('bugzilla', 'regexp',
                            bugzilla._default_bug_re), re.IGNORECASE)
         self.fix_re = re.compile(
-            self.ui.config('bugzilla', 'fixregexp',
-                           bugzilla._default_fix_re), re.IGNORECASE)
+            self.ui.config('bugzilla', 'fixregexp'), re.IGNORECASE)
         self.split_re = re.compile(r'\D+')
 
     def find_bugs(self, ctx):