diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 19:57:36 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-07-08 19:57:36 +0000 |
commit | 5eb733f5c2ce1aedce36cd039c65e9fb5fabb32e (patch) | |
tree | bd800a16ae79145ae4af1f6db443dbe59de5ec2e /urpm/removable.pm | |
parent | cc456f776b4ad178ec2b092e674af0fd2cc8b597 (diff) | |
download | urpmi-5eb733f5c2ce1aedce36cd039c65e9fb5fabb32e.tar urpmi-5eb733f5c2ce1aedce36cd039c65e9fb5fabb32e.tar.gz urpmi-5eb733f5c2ce1aedce36cd039c65e9fb5fabb32e.tar.bz2 urpmi-5eb733f5c2ce1aedce36cd039c65e9fb5fabb32e.tar.xz urpmi-5eb733f5c2ce1aedce36cd039c65e9fb5fabb32e.zip |
migrate to use blist->{pkgs} instead of blist->{list}
Diffstat (limited to 'urpm/removable.pm')
-rw-r--r-- | urpm/removable.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/urpm/removable.pm b/urpm/removable.pm index 57b52f95..f4892bc0 100644 --- a/urpm/removable.pm +++ b/urpm/removable.pm @@ -147,8 +147,8 @@ sub try_mounting_non_cdroms { sub _blist_first_url { my ($blist) = @_; - my ($url) = values %{$blist->{list}}; - $url; + my ($pkg) = values %{$blist->{pkgs}}; + urpm::blist_pkg_to_url($blist, $pkg); } 1; |