aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--Rpmdrake/open_db.pm2
2 files changed, 2 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 2d25836c..59965cf4 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,6 @@
- rpmdrake
o fix a rare crash (mga#12113)
+ o do not treat Backport Testing as backport media (mga#13606)
Version 6.11 - 27 June 2014, Thierry Vignaud
diff --git a/Rpmdrake/open_db.pm b/Rpmdrake/open_db.pm
index 1d1ee2ab..f7302ddf 100644
--- a/Rpmdrake/open_db.pm
+++ b/Rpmdrake/open_db.pm
@@ -128,7 +128,7 @@ sub is_it_a_devel_distro() {
sub get_backport_media {
my ($urpm) = @_;
grep { $_->{name} =~ /backport/i &&
- $_->{name} !~ /debug|sources/i } @{$urpm->{media}};
+ $_->{name} !~ /debug|sources|testing/i } @{$urpm->{media}};
}
sub get_inactive_backport_media {