summaryrefslogtreecommitdiffstats
path: root/urpm/removable.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm/removable.pm')
-rw-r--r--urpm/removable.pm3
1 files changed, 1 insertions, 2 deletions
diff --git a/urpm/removable.pm b/urpm/removable.pm
index 569724f2..2e0c4ff9 100644
--- a/urpm/removable.pm
+++ b/urpm/removable.pm
@@ -87,7 +87,6 @@ sub _check_notfound {
-e $dir or return 2;
}
foreach (values %$medium_list) {
- chomp;
my $dir_ = _filepath($_) or next;
if (!$dir) {
$dir = $dir_;
@@ -135,6 +134,7 @@ sub _mount_it {
sub _filepath {
my ($url) = @_;
+ chomp $url;
my $filepath = file_from_local_url($url) or return;
$filepath =~ m!/.*/! or return; #- is this really needed??
$filepath;
@@ -149,7 +149,6 @@ sub _examine_removable_medium_ {
if (-e $dir) {
while (my ($i, $url) = each %$medium_list) {
- chomp $url;
my $filepath = _filepath($url) or next;
if (-r $filepath) {