Package: reportbug Version: 4.5 Severity: normal Tags: patch Hi,
If you try to use the filtering feature recursively, Reportbug will crash because the next call for search_bugs function needs 8 arguments and not 7. Bye, Carl Chenet -- Package-specific info: ** Environment settings: DEBEMAIL="cha...@ohmytux.com" DEBFULLNAME="Carl Chenet" INTERFACE="text" ** /home/chaica/.reportbugrc: reportbug_version "4.5" mode novice ui text smtphost "smtp.free.fr" -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages reportbug depends on: ii apt 0.7.21 Advanced front-end for dpkg ii python 2.5.4-2 An interactive high-level object-o ii python-reportbug 4.5 Python modules for interacting wit reportbug recommends no packages. Versions of packages reportbug suggests: pn debconf-utils <none> (no description available) ii debsums 2.0.44 verification of installed package pn dlocate <none> (no description available) ii exim4 4.69-9 metapackage to ease Exim MTA (v4) ii exim4-daemon-light [mail-tran 4.69-9 lightweight Exim MTA (v4) daemon ii file 5.00-1 Determines file type using "magic" ii gnupg 1.4.9-4 GNU privacy guard - a free PGP rep pn python-gnome2-extras <none> (no description available) pn python-gtk2 <none> (no description available) pn python-urwid <none> (no description available) pn python-vte <none> (no description available) -- no debconf information
>From 01f8719dc494b36d8a9e4303894f90accc087318 Mon Sep 17 00:00:00 2001 From: chaica <cha...@ohmytux.com> Date: Tue, 18 Aug 2009 00:06:33 +0200 Subject: [PATCH] fix for recursive call to search bug feature --- reportbug/ui/text_ui.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/reportbug/ui/text_ui.py b/reportbug/ui/text_ui.py index 426340c..f11256c 100644 --- a/reportbug/ui/text_ui.py +++ b/reportbug/ui/text_ui.py @@ -885,7 +885,7 @@ def search_bugs(hierarchyfull, bts, queryonly, mirrors, elif x == 'f': # Do filter. Recursive done. retval = search_bugs(hierarchy, bts, queryonly, mirrors, - http_proxy, screen, title) + http_proxy, screen, title, package) if retval == "FilterEnd": continue else: -- 1.6.2.3