Mercurial > hg
changeset 33745:8bf8ed0deab8
configitems: register the 'notify.merge' config
author | Boris Feld <boris.feld@octobus.net> |
---|---|
date | Fri, 30 Jun 2017 03:43:26 +0200 |
parents | b76dc3e6bf99 |
children | 20189ba5fddf |
files | hgext/notify.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/notify.py Fri Jun 30 03:43:25 2017 +0200 +++ b/hgext/notify.py Fri Jun 30 03:43:26 2017 +0200 @@ -179,6 +179,9 @@ configitem('notify', 'mbox', default=None, ) +configitem('notify', 'merge', + default=True, +) # template for single changeset can include email headers. single_template = ''' @@ -220,7 +223,7 @@ self.test = self.ui.configbool('notify', 'test', True) self.charsets = mail._charsets(self.ui) self.subs = self.subscribers() - self.merge = self.ui.configbool('notify', 'merge', True) + self.merge = self.ui.configbool('notify', 'merge') mapfile = None template = (self.ui.config('notify', hooktype) or