File: fix-error-message-in-webtidy

package info (click to toggle)
libhtml-tidy-perl 1.60-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 472 kB
  • sloc: perl: 1,289; sh: 23; makefile: 7
file content (22 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Ryan Niebur <ryan@debian.org>
Date: Tue, 2 Jun 2009 21:15:36 -0700
Subject: make webtidy error message more debianish

Forwarded: not-needed
---
 bin/webtidy | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/webtidy b/bin/webtidy
index dc1a979..5338d09 100755
--- a/bin/webtidy
+++ b/bin/webtidy
@@ -29,7 +29,7 @@ for my $url ( @ARGV ) {
     my @lines;
     if ( $url =~ /^https?:/ ) {
         if ( !eval { require LWP::Simple; 1; } ) {
-            warn q{Can't retrieve URLs without LWP::Simple installed};
+            warn q{Can't retrieve URLs without the libwww-perl package installed};
             next;
         }