hgext/notify.py
branchstable
changeset 13202 d83566f4453b
parent 10282 08a0f04b56bd
child 13878 a8d13ee0ce68
--- 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)