diff options
author | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-08-30 14:02:20 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@mandriva.org> | 2005-08-30 14:02:20 +0000 |
commit | ad8e48c321d683614d8955def4b98dea3b228081 (patch) | |
tree | 667d4af3e016ee462d185062d1cb045fd03d4645 /urpm.pm | |
parent | 4c9a2615044e763a92419c0e58e17eb0926fb752 (diff) | |
download | urpmi-ad8e48c321d683614d8955def4b98dea3b228081.tar urpmi-ad8e48c321d683614d8955def4b98dea3b228081.tar.gz urpmi-ad8e48c321d683614d8955def4b98dea3b228081.tar.bz2 urpmi-ad8e48c321d683614d8955def4b98dea3b228081.tar.xz urpmi-ad8e48c321d683614d8955def4b98dea3b228081.zip |
Suppress utf8 warnings unless we want them
Diffstat (limited to 'urpm.pm')
-rw-r--r-- | urpm.pm | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -23,6 +23,9 @@ BEGIN { if ($ENV{DEBUG_URPMI}) { require encoding::warnings; encoding::warnings->import; + } else { + require warnings; + warnings->unimport('utf8'); } } |