[PATCH 08 of 10 V2] configitems: register the 'bugzilla.fixresolution' config
Boris Feld
boris.feld at octobus.net
Tue Jul 11 15:59:42 UTC 2017
# HG changeset patch
# User Boris Feld <boris.feld at octobus.net>
# Date 1499414740 -7200
# Fri Jul 07 10:05:40 2017 +0200
# Node ID 7899b38ce3e21d04d578f101bc6fc503600ca07b
# Parent 0bb83a78698c7762b4c0a897797f5340cc9d0684
# EXP-Topic config.register.bugzilla
configitems: register the 'bugzilla.fixresolution' config
diff -r 0bb83a78698c -r 7899b38ce3e2 hgext/bugzilla.py
--- a/hgext/bugzilla.py Fri Jul 07 10:03:36 2017 +0200
+++ b/hgext/bugzilla.py Fri Jul 07 10:05:40 2017 +0200
@@ -340,6 +340,9 @@
configitem('bugzilla', 'fixregexp',
default=lambda: bugzilla._default_fix_re,
)
+configitem('bugzilla', 'fixresolution',
+ default='FIXED',
+)
class bzaccess(object):
'''Base class for access to Bugzilla.'''
@@ -668,8 +671,7 @@
passwd = self.ui.config('bugzilla', 'password')
self.fixstatus = self.ui.config('bugzilla', 'fixstatus', 'RESOLVED')
- self.fixresolution = self.ui.config('bugzilla', 'fixresolution',
- 'FIXED')
+ self.fixresolution = self.ui.config('bugzilla', 'fixresolution')
self.bzproxy = xmlrpclib.ServerProxy(bzweb, self.transport(bzweb))
ver = self.bzproxy.Bugzilla.version()['version'].split('.')
@@ -827,8 +829,7 @@
self.user = self.ui.config('bugzilla', 'user', 'bugs')
self.passwd = self.ui.config('bugzilla', 'password')
self.fixstatus = self.ui.config('bugzilla', 'fixstatus', 'RESOLVED')
- self.fixresolution = self.ui.config('bugzilla', 'fixresolution',
- 'FIXED')
+ self.fixresolution = self.ui.config('bugzilla', 'fixresolution')
def apiurl(self, targets, include_fields=None):
url = '/'.join([self.bzroot] + [str(t) for t in targets])
More information about the Mercurial-devel
mailing list