[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Bug#592138: reportbug: wrong version for release.debian.org/freeze-exception



Hello,

On Sat, Aug 7, 2010 at 20:11, Jakub Wilk <jwilk@debian.org> wrote:
> Package: reportbug
> Version: 4.12.5
> Severity: normal
>
> reportbug uses "None" as a version for freeze exception:

RT, am I allowed to upload reportbug to fix this bug (patch attached)?
The fix is a one-liner (actually a one-char :) and given there are
high chances it will be used a lot in the next period, I think fixing
it fast would be nice.

If an upload is granted, and then an unblock, please note that
unstable currently has 4.12.5, not in testing but ack'd by Andreas for
an unblock.

Regards,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi
diff --git a/debian/changelog b/debian/changelog
index c77c6d9..b9b921f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,11 @@
+reportbug (4.12.6) UNRELEASED; urgency=low
+
+  * reportbug/debianbts.py
+    - fix a typo to properly recognize free-exception; thanks to Jakub Wilk for
+      the report; Closes: #592138
+
+ -- Sandro Tosi <morph@debian.org>  Sat, 07 Aug 2010 21:37:37 +0200
+
 reportbug (4.12.5) unstable; urgency=low
 
   * bin/reportbug
diff --git a/reportbug/debianbts.py b/reportbug/debianbts.py
index 5c583eb..c6a3ce3 100644
--- a/reportbug/debianbts.py
+++ b/reportbug/debianbts.py
@@ -375,7 +375,7 @@ def handle_debian_release(package, bts, ui, fromaddr, timeout, online=True, http
         else:
             package = info[12] or package
 
-    if tag in ('binnmu', 'unblock', 'freeze-exceptions', 'opu', 'pu', 'rm'):
+    if tag in ('binnmu', 'unblock', 'freeze-exception', 'opu', 'pu', 'rm'):
         # FIXME: opu/pu/rm should lookup the version elsewhere
         version = info and info[0]
         if version:

Reply to: