##// END OF EJS Templates
mail: use standard section.entry format in error message
Martin Geisler -
r12090:ee601a62 stable
parent child Browse files
Show More
@@ -36,7 +36,7 def _smtp(ui):
36 36 s = smtplib.SMTP(local_hostname=local_hostname)
37 37 mailhost = ui.config('smtp', 'host')
38 38 if not mailhost:
39 raise util.Abort(_('no [smtp]host in hgrc - cannot send mail'))
39 raise util.Abort(_('smtp.host not configured - cannot send mail'))
40 40 mailport = int(ui.config('smtp', 'port', 25))
41 41 ui.note(_('sending mail: smtp host %s, port %s\n') %
42 42 (mailhost, mailport))
General Comments 0
You need to be logged in to leave comments. Login now