This commit is contained in:
mcafee%netscape.com 2002-12-27 10:21:19 +00:00
Родитель 440c8e9895
Коммит 5b5e7a49f5
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -85,8 +85,12 @@ sub find_scrape_data {
# Strip off the TinderboxPrint: part of the line
chomp;
s/.*TinderboxPrint://;
# No longer use ; to create separate lines.
#@line = split(';', $_);
push(@rv, $_);
$line[0] = $_;
push(@rv, @line);
}
}
return @rv;