diff options
author | Manuel Reimer <manuel.reimer@gmx.de> | 2020-08-12 15:08:56 (GMT) |
---|---|---|
committer | Manuel Reimer <manuel.reimer@gmx.de> | 2020-08-12 15:09:04 (GMT) |
commit | cf01e00ac733c2542c284a204a0c2c3ea03002b8 (patch) | |
tree | b27bedaa3eb41d8ee5e0e7c1b313f382d904d0a3 | |
parent | 9fa5c533409416ba7579989beea494eb1c66c665 (diff) | |
download | vdrpbd-cf01e00ac733c2542c284a204a0c2c3ea03002b8.tar.gz vdrpbd-cf01e00ac733c2542c284a204a0c2c3ea03002b8.tar.bz2 |
Replace Pod::PlainText with Pod::Simple::Text
Fixes https://github.com/VDR4Arch/vdr4arch/issues/223
-rwxr-xr-x | vdrpbd | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. use strict; -use Pod::PlainText; +use Pod::Simple::Text; use Getopt::Std; use POSIX; use threads; @@ -174,7 +174,7 @@ sub VERSION_MESSAGE { sub HELP_MESSAGE { # Print out the built-in POD documentation in case of --help parameter - Pod::PlainText->new(sentence => 0)->parse_from_file($0); + Pod::Simple::Text->filter($0); } sub ParseConfig { |