diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-19 23:29:01 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-19 23:29:01 +0000 |
commit | 4c31d7206ffc04639825ef80548eef82bd8610ff (patch) | |
tree | 11e30a8b196fa1b9405a06b269a636047fdf7e18 /perl-install/install_any.pm | |
parent | 4ba936d6ddd69a64fd150e8cf53b0b2ee4c04e3f (diff) | |
download | drakx-4c31d7206ffc04639825ef80548eef82bd8610ff.tar drakx-4c31d7206ffc04639825ef80548eef82bd8610ff.tar.gz drakx-4c31d7206ffc04639825ef80548eef82bd8610ff.tar.bz2 drakx-4c31d7206ffc04639825ef80548eef82bd8610ff.tar.xz drakx-4c31d7206ffc04639825ef80548eef82bd8610ff.zip |
use formatError
Diffstat (limited to 'perl-install/install_any.pm')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index 50cdb648f..a7d2a89a8 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -820,7 +820,7 @@ sub getAndSaveAutoInstallFloppy { local $o->{partitioning}{clearall} = !$replay; eval { output("$mountdir/auto_inst.cfg", g_auto_install($replay)) }; - $@ and log::l("Warning: <$@>"); + $@ and log::l("Warning: <", formatError($@), ">"); fs::umount($mountdir); rmdir $mountdir; |