diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-02 13:40:32 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-02 13:40:32 +0000 |
commit | 101a5dfc666bd6df7943430470dc5130e906ff68 (patch) | |
tree | 0a7f1d0812923279a3088967892d7581f9e4a1c6 /perl-install/printer/printerdrake.pm | |
parent | 8a1887487fb4458c593a571578c244c4503d71ce (diff) | |
download | drakx-backup-do-not-use-101a5dfc666bd6df7943430470dc5130e906ff68.tar drakx-backup-do-not-use-101a5dfc666bd6df7943430470dc5130e906ff68.tar.gz drakx-backup-do-not-use-101a5dfc666bd6df7943430470dc5130e906ff68.tar.bz2 drakx-backup-do-not-use-101a5dfc666bd6df7943430470dc5130e906ff68.tar.xz drakx-backup-do-not-use-101a5dfc666bd6df7943430470dc5130e906ff68.zip |
move whatPrinter(), whatUsbport() and whatPrinterPort() out of detect_devices to printer::detect
(it cleans up detect_devices, and won't hurt eyes anymore :)
this change, together with .perl_checker skipping printer::* marks the style disagreement
between printer/* and the rest of install
Diffstat (limited to 'perl-install/printer/printerdrake.pm')
-rw-r--r-- | perl-install/printer/printerdrake.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/perl-install/printer/printerdrake.pm b/perl-install/printer/printerdrake.pm index 7f502dc1f..e5b028fd1 100644 --- a/perl-install/printer/printerdrake.pm +++ b/perl-install/printer/printerdrake.pm @@ -4,7 +4,6 @@ package printer::printerdrake; use strict; use common; -use detect_devices; use modules; use network; use log; @@ -694,7 +693,7 @@ sub setup_local_autoscan { } my @port; if ($::expert) { - @port = detect_devices::whatPrinterPort(); + @port = printer::detect::whatPrinterPort(); LOOP: foreach my $q (@port) { if (@str) { foreach my $p (@autodetected) { |