diff options
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | Rpmdrake/open_db.pm | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 { |