comparison hgext/bugzilla.py @ 33397:f656a4184a99

configitems: register the 'bugzilla.bzuser' config
author Boris Feld <boris.feld@octobus.net>
date Fri, 07 Jul 2017 10:03:31 +0200
parents 96d3e5c1fd25
children 69d85abe4cba
comparison
equal deleted inserted replaced
33396:96d3e5c1fd25 33397:f656a4184a99
328 configitem('bugzilla', 'bzemail', 328 configitem('bugzilla', 'bzemail',
329 default=None, 329 default=None,
330 ) 330 )
331 configitem('bugzilla', 'bzurl', 331 configitem('bugzilla', 'bzurl',
332 default='http://localhost/bugzilla/', 332 default='http://localhost/bugzilla/',
333 )
334 configitem('bugzilla', 'bzuser',
335 default=None,
333 ) 336 )
334 337
335 class bzaccess(object): 338 class bzaccess(object):
336 '''Base class for access to Bugzilla.''' 339 '''Base class for access to Bugzilla.'''
337 340