From cf01e00ac733c2542c284a204a0c2c3ea03002b8 Mon Sep 17 00:00:00 2001 From: Manuel Reimer Date: Wed, 12 Aug 2020 17:08:56 +0200 Subject: Replace Pod::PlainText with Pod::Simple::Text Fixes https://github.com/VDR4Arch/vdr4arch/issues/223 --- vdrpbd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vdrpbd b/vdrpbd index 0fff3f6..ac822c5 100755 --- a/vdrpbd +++ b/vdrpbd @@ -16,7 +16,7 @@ # along with this program. If not, see . 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 { -- cgit v1.2.3