[Reportbug-commits] r678 - in trunk (debian/changelog reportbug/submit.py)

morph at users.alioth.debian.org morph at users.alioth.debian.org
Fri Jan 2 22:24:48 UTC 2009


    Date: Friday, January 2, 2009 @ 22:24:47
  Author: morph
Revision: 678

reportbug/submit.py

* reportbug/submit.py
  - get_email_addr is from utils, fixed the import and the instruction

Modified:
  trunk/debian/changelog
  trunk/reportbug/submit.py

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2009-01-02 22:24:00 UTC (rev 677)
+++ trunk/debian/changelog	2009-01-02 22:24:47 UTC (rev 678)
@@ -7,8 +7,10 @@
   * bin/reportbug
     - call the correct method for sign a message; thanks to Chris Taylor for the
       report; Closes: #503425
+  * reportbug/submit.py
+    - get_email_addr is from utils, fixed the import and the instruction
 
- -- Sandro Tosi <morph at debian.org>  Fri, 02 Jan 2009 23:03:49 +0100
+ -- Sandro Tosi <morph at debian.org>  Fri, 02 Jan 2009 23:10:24 +0100
 
 reportbug (3.99.0) experimental; urgency=low
 

Modified: trunk/reportbug/submit.py
===================================================================
--- trunk/reportbug/submit.py	2009-01-02 22:24:00 UTC (rev 677)
+++ trunk/reportbug/submit.py	2009-01-02 22:24:47 UTC (rev 678)
@@ -46,6 +46,7 @@
     NoMessage,
     )
 import ui.text_ui as ui
+from utils import get_email_addr
 
 quietly = False
 
@@ -111,7 +112,7 @@
         kw need to have the following keys
     '''
     if not pgp_addr:
-        pgp_addr = reportbug.get_email_addr(fromaddr)[1]
+        pgp_addr = get_email_addr(fromaddr)[1]
 
     # Make the unsigned file first
     (unsigned, file1) = TempFile(prefix=tempfile_prefix(package, 'unsigned'))




More information about the Reportbug-commits mailing list