Show More
@@ -185,6 +185,9 b" configitem('notify', 'merge'," | |||
|
185 | 185 | configitem('notify', 'sources', |
|
186 | 186 | default='serve', |
|
187 | 187 | ) |
|
188 | configitem('notify', 'strip', | |
|
189 | default=0, | |
|
190 | ) | |
|
188 | 191 | |
|
189 | 192 | # template for single changeset can include email headers. |
|
190 | 193 | single_template = ''' |
@@ -219,7 +222,7 b' class notifier(object):' | |||
|
219 | 222 | if cfg: |
|
220 | 223 | self.ui.readconfig(cfg, sections=['usersubs', 'reposubs']) |
|
221 | 224 | self.repo = repo |
|
222 |
self.stripcount = int(self.ui.config('notify', 'strip' |
|
|
225 | self.stripcount = int(self.ui.config('notify', 'strip')) | |
|
223 | 226 | self.root = self.strip(self.repo.root) |
|
224 | 227 | self.domain = self.ui.config('notify', 'domain') |
|
225 | 228 | self.mbox = self.ui.config('notify', 'mbox') |
General Comments 0
You need to be logged in to leave comments.
Login now