diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-10-09 11:17:08 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-10-09 11:17:08 +0000 |
commit | 0f4038fd09f9f8582f1a868584d8cac54df640eb (patch) | |
tree | f2eab5e04b9c1a5b270c38fc86d42c2ab5c1c6b2 /perl-install/partition_table.pm | |
parent | 7befd0e218e67479b59a9867d6fad0f17714db42 (diff) | |
download | drakx-0f4038fd09f9f8582f1a868584d8cac54df640eb.tar drakx-0f4038fd09f9f8582f1a868584d8cac54df640eb.tar.gz drakx-0f4038fd09f9f8582f1a868584d8cac54df640eb.tar.bz2 drakx-0f4038fd09f9f8582f1a868584d8cac54df640eb.tar.xz drakx-0f4038fd09f9f8582f1a868584d8cac54df640eb.zip |
make perl_checker happy
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index d16d0ccd8..f0485dee3 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -1,8 +1,8 @@ package partition_table; # $Id$ -#use diagnostics; -#use strict; -#use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK @important_types @important_types2 @fields2save); +use diagnostics; +use strict; +use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK @important_types @important_types2 @fields2save @bad_types); @ISA = qw(Exporter); %EXPORT_TAGS = ( @@ -13,6 +13,7 @@ package partition_table; # $Id$ use common; use partition_table_raw; +use detect_devices; use log; @important_types = ('Linux native', 'Linux swap', |