diff options
Diffstat (limited to 'ext/MIME')
-rw-r--r-- | ext/MIME/Base64/QuotedPrint.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/MIME/Base64/QuotedPrint.pm b/ext/MIME/Base64/QuotedPrint.pm index b3ff9924f6..21110a0d74 100644 --- a/ext/MIME/Base64/QuotedPrint.pm +++ b/ext/MIME/Base64/QuotedPrint.pm @@ -65,7 +65,7 @@ modify it under the same terms as Perl itself. use strict; use vars qw(@ISA @EXPORT $VERSION); if (ord('A') == 193) { # on EBCDIC machines we need translation help - use Encode (); + require Encode; import Encode; } require Exporter; |