diff -r 20189ba5fddf -r 71665bbe82c1 hgext/notify.py --- a/hgext/notify.py Fri Jun 30 03:43:27 2017 +0200 +++ b/hgext/notify.py Fri Jun 30 03:43:28 2017 +0200 @@ -185,6 +185,9 @@ configitem('notify', 'sources', default='serve', ) +configitem('notify', 'strip', + default=0, +) # template for single changeset can include email headers. single_template = ''' @@ -219,7 +222,7 @@ if cfg: self.ui.readconfig(cfg, sections=['usersubs', 'reposubs']) self.repo = repo - self.stripcount = int(self.ui.config('notify', 'strip', 0)) + self.stripcount = int(self.ui.config('notify', 'strip')) self.root = self.strip(self.repo.root) self.domain = self.ui.config('notify', 'domain') self.mbox = self.ui.config('notify', 'mbox')