diff --git a/debian/changelog b/debian/changelog index c39791c..6de663e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,15 +2,19 @@ reportbug (3.30) unstable; urgency=low * Put bugs that are fixed in subsequent releases at the top of the bug browser; this should hopefully reduce the incidence of duplicate - reports. + reports. (Note that some bugs that are closed may appear at the top + due to known problems in debbugs.) * Don't allow tab-expansion of the realname in offer_configuration(); this should resolve the encoding issues that some people have been bumping into. * When some recipients are refused, inform the user and dump the report in a temporary file. (Closes: #387691) * Bypass vi nag when $EDITOR is set. (Closes: #388437) - - -- + * Add an extra EHLO when doing STARTTLS, since (contrary to the smtplib + documentation) smtplib seems to need it. (Closes: #3226523) + * Fix crash when bugtitle lacks a colon. (Closes: #389259) + + -- Chris Lawrence Thu, 28 Sep 2006 21:16:38 -0500 reportbug (3.29.5) unstable; urgency=low diff --git a/urlutils.py b/urlutils.py index c5c14cb..093704a 100644 --- a/urlutils.py +++ b/urlutils.py @@ -170,8 +170,6 @@ def launch_browser(url): os.system(cmd) if __name__ == '__main__': - page = open_url('http://packages.debian.org/reportbug') + page = open_url('http://bugs.debian.org/reportbug') content = page.read() print page.info().headers - -