summaryrefslogtreecommitdiffstats
path: root/perl-install/common.pm
diff options
context:
space:
mode:
authorAhmad Samir <ahmad@mageia.org>2011-04-04 19:18:28 +0000
committerAhmad Samir <ahmad@mageia.org>2011-04-04 19:18:28 +0000
commitc35e14afe195640b441f40bdd9be6e7344dd9528 (patch)
tree116d084cd34a62a977dcc018181b16eb9f618c19 /perl-install/common.pm
parentc17fbf2a4f83f6192453e947733c22c2af3501bf (diff)
downloaddrakx-c35e14afe195640b441f40bdd9be6e7344dd9528.tar
drakx-c35e14afe195640b441f40bdd9be6e7344dd9528.tar.gz
drakx-c35e14afe195640b441f40bdd9be6e7344dd9528.tar.bz2
drakx-c35e14afe195640b441f40bdd9be6e7344dd9528.tar.xz
drakx-c35e14afe195640b441f40bdd9be6e7344dd9528.zip
- string changes: perl -pi -e 's!Can not!Cannot!'
Diffstat (limited to 'perl-install/common.pm')
-rw-r--r--perl-install/common.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/common.pm b/perl-install/common.pm
index f88f2767c..3b4582b9d 100644
--- a/perl-install/common.pm
+++ b/perl-install/common.pm
@@ -261,7 +261,7 @@ sub files_exist { and_(map { -f "$::prefix$_" } @_) }
sub open_file {
my ($file) = @_;
my $F;
- open($F, $file) ? $F : do { log::l("Can not open $file: $!"); undef };
+ open($F, $file) ? $F : do { log::l("Cannot open $file: $!"); undef };
}