File: fix-error-message-in-webtidy

package info (click to toggle)
libhtml-tidy-perl 1.56-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 324 kB
  • ctags: 181
  • sloc: perl: 1,164; sh: 23; makefile: 6
file content (15 lines) | stat: -rw-r--r-- 459 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Description: make webtidy error message more debianish
Author: Ryan Niebur <ryan@debian.org>
Forwarded: not-needed

--- a/bin/webtidy
+++ b/bin/webtidy
@@ -29,7 +29,7 @@
     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;
         }