# HG changeset patch # User Yuya Nishihara # Date 1293121038 -32400 # Node ID d83566f4453bd03d1605ba49e2c34f32488ca3c5 # Parent 4d03707916d33773cd1abb9d2f50a0b1564d90c1 notify: use util.ellipsis() to truncate long subject diff -r 4d03707916d3 -r d83566f4453b hgext/notify.py --- a/hgext/notify.py Mon Dec 27 17:49:58 2010 +0100 +++ b/hgext/notify.py Fri Dec 24 01:17:18 2010 +0900 @@ -215,8 +215,8 @@ s = ctx.description().lstrip().split('\n', 1)[0].rstrip() subject = '%s: %s' % (self.root, s) maxsubject = int(self.ui.config('notify', 'maxsubject', 67)) - if maxsubject and len(subject) > maxsubject: - subject = subject[:maxsubject - 3] + '...' + if maxsubject: + subject = util.ellipsis(subject, maxsubject) msg['Subject'] = mail.headencode(self.ui, subject, self.charsets, self.test)