summaryrefslogtreecommitdiffstats
path: root/pxe_wizard
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2006-01-03 17:21:06 +0000
committerOlivier Blin <oblin@mandriva.org>2006-01-03 17:21:06 +0000
commit039043dce270c730cd0880b30f18fd0665a8d5f9 (patch)
tree7fbc4332363731a88404cd2d9baacd721afdd548 /pxe_wizard
parent9518e6f02ba555d798877604c8f50daf44486f45 (diff)
downloaddrakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar
drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar.gz
drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar.bz2
drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.tar.xz
drakwizard-039043dce270c730cd0880b30f18fd0665a8d5f9.zip
bless directly the wizard object instead of wrapping it in a hash
Diffstat (limited to 'pxe_wizard')
-rw-r--r--pxe_wizard/Pxe.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/pxe_wizard/Pxe.pm b/pxe_wizard/Pxe.pm
index 89d8dab6..2bcfb4a7 100644
--- a/pxe_wizard/Pxe.pm
+++ b/pxe_wizard/Pxe.pm
@@ -643,9 +643,7 @@ EOF
sub new {
my ($class) = @_;
- bless {
- o => $o,
- }, $class;
+ bless $o, $class;
}
1;