[Python-checkins] hooks: Fix refactoring oversight.

georg.brandl python-checkins at python.org
Sun Sep 14 12:29:42 CEST 2014


http://hg.python.org/hooks/rev/48575ba56bb3
changeset:   93:48575ba56bb3
user:        Georg Brandl <georg at python.org>
date:        Sun Sep 14 12:29:37 2014 +0200
summary:
  Fix refactoring oversight.

files:
  hgroundup.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/hgroundup.py b/hgroundup.py
--- a/hgroundup.py
+++ b/hgroundup.py
@@ -107,7 +107,7 @@
           password = ui.config('smtp', 'password', '')
           s.login(username, password)
         try:
-            send_comments(mailrelay, fromaddr, toaddr, issues)
+            send_comments(s, fromaddr, toaddr, issues)
             ui.status("sent email to roundup at " + toaddr + '\n')
         except Exception, err:
             # make sure an issue updating roundup does not prevent an

-- 
Repository URL: http://hg.python.org/hooks


More information about the Python-checkins mailing list