Author: kwilliams
Date: Mon Jan 28 15:21:37 2008
New Revision: 10662
Modified:
Module-Build/trunk/t/lib/DistGen.pm
Log:
Trade a bad idiom for a good one
Modified: Module-Build/trunk/t/lib/DistGen.pm
==============================================================================
--- Module-Build/trunk/t/lib/DistGen.pm (original)
+++ Module-Build/trunk/t/lib/DistGen.pm Mon Jan 28 15:21:37 2008
@@ -27,8 +27,7 @@
}
}
BEGIN {
- require Exporter;
- *{import} = \&Exporter::import;
+ use Exporter 'import';
@EXPORT_OK = qw(
undent
);