diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/URI/file/Unix.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/URI/file/Unix.pm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Master/tlpkg/tlperl/lib/URI/file/Unix.pm b/Master/tlpkg/tlperl/lib/URI/file/Unix.pm index 5f8aaae9050..4315c3ea8b8 100644 --- a/Master/tlpkg/tlperl/lib/URI/file/Unix.pm +++ b/Master/tlpkg/tlperl/lib/URI/file/Unix.pm @@ -1,9 +1,10 @@ package URI::file::Unix; -require URI::file::Base; -@ISA=qw(URI::file::Base); - use strict; +use warnings; + +use parent 'URI::file::Base'; + use URI::Escape qw(uri_unescape); sub _file_extract_path |