diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-17 12:19:31 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-17 12:19:31 +0200 |
commit | e84a565bfa37b62c79dcf42fd8d60e7b8bb44572 (patch) | |
tree | d614a915d2811d0336431fe252e7fc1cba42c8d9 /summary2info.pl | |
parent | 5355b3345cdfd2258fc65b141dd168b2414a278b (diff) | |
download | vdr-e84a565bfa37b62c79dcf42fd8d60e7b8bb44572.tar.gz vdr-e84a565bfa37b62c79dcf42fd8d60e7b8bb44572.tar.bz2 |
Stripped some trailing whitespace1.3.47
Diffstat (limited to 'summary2info.pl')
-rwxr-xr-x | summary2info.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/summary2info.pl b/summary2info.pl index 5d68d794..15300e5d 100755 --- a/summary2info.pl +++ b/summary2info.pl @@ -10,7 +10,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: summary2info.pl 1.5 2005/09/17 09:20:31 kls Exp $ +# $Id: summary2info.pl 1.6 2006/04/17 12:19:24 kls Exp $ $VideoDir = $ARGV[0] || die "please provide the name of the video directory\n"; @@ -41,7 +41,7 @@ for $SummaryFile (@SummaryFiles) { # if line 1 is too long, it can't be the short text, # so assume the short text is missing and concatenate # line 1 and line 2 to be the long text: - if (length($data[1]) > 80) { + if (length($data[1]) > 80) { $data[2] = $data[1] . "|" . $data[2]; $data[1] = ""; } |