[SCM] Git repository for devscripts branch, master, updated. v2.11.7-31-g3fdb9dd
James McCoy
jamessan at debian.org
Wed May 30 00:36:50 UTC 2012
The following commit has been merged in the master branch:
commit 3fdb9dd0b5ad467fde0a3cf86b88dfa3885b2d96
Author: Salvatore Bonaccorso <carnil at debian.org>
Date: Tue May 29 19:51:46 2012 +0200
bts: When searching for usertags use tag= in the url
When searching for usertags the url does not contain usertag= but tag=
followed by the options (containing users=). See [1].
[1]: https://lists.debian.org/debian-devel-announce/2005/09/msg00002.html
Closes: #675071
Signed-off-by: James McCoy <jamessan at debian.org>
diff --git a/debian/changelog b/debian/changelog
index 4772cb2..a303fc7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -40,6 +40,10 @@ devscripts (2.11.8) UNRELEASED; urgency=low
* devscripts.Logger Don't substitute arguments into logged strings unless
they were provided. (LP: #968129)
+ [ Salvatore Bonaccorso ]
+ * bts: When searching for usertags use tag= in the url (followed by
+ the options containing users=). (Closes: #675071).
+
-- Benjamin Drung <bdrung at debian.org> Mon, 28 May 2012 17:14:12 +0200
devscripts (2.11.7) unstable; urgency=low
diff --git a/scripts/bts.pl b/scripts/bts.pl
index 36f0d2d..c326898 100755
--- a/scripts/bts.pl
+++ b/scripts/bts.pl
@@ -3399,7 +3399,7 @@ sub thing_to_url {
($thingurl = $thing) =~ s/^tag:/tag=/;
$thingurl = $btscgipkgurl.'?'.$thingurl;
} elsif ($thing =~ /^usertag:/) {
- ($thingurl = $thing) =~ s/^usertag:/usertag=/;
+ ($thingurl = $thing) =~ s/^usertag:/tag=/;
$thingurl = $btscgipkgurl.'?'.$thingurl;
} elsif ($thing =~ m%^release-critical(\.html|/(index\.html)?)?$%) {
$thingurl = $btsurl . 'release-critical/index.html';
--
Git repository for devscripts
More information about the devscripts-devel
mailing list