Mercurial > hg
changeset 33394:a752d2e7ec9c
configitems: register the 'bugzilla.bzdir' config
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Fri, 07 Jul 2017 10:03:24 +0200 |
parents | 01a90fed5840 |
children | b33d63651693 |
files | hgext/bugzilla.py |
diffstat | 1 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/bugzilla.py Fri Jul 07 10:03:22 2017 +0200 +++ b/hgext/bugzilla.py Fri Jul 07 10:03:24 2017 +0200 @@ -322,6 +322,9 @@ configitem('bugzilla', 'apikey', default='', ) +configitem('bugzilla', 'bzdir', + default='/var/www/html/bugzilla', +) class bzaccess(object): '''Base class for access to Bugzilla.''' @@ -457,8 +460,7 @@ for id in bugs.keys(): self.ui.status(_(' bug %s\n') % id) cmdfmt = self.ui.config('bugzilla', 'notify', self.default_notify) - bzdir = self.ui.config('bugzilla', 'bzdir', - '/var/www/html/bugzilla') + bzdir = self.ui.config('bugzilla', 'bzdir') try: # Backwards-compatible with old notify string, which # took one string. This will throw with a new format