Removing scrape split token, now TinderboxPrint: just prints out the rest of the line. If you want 3 lines of output on tbox, you need 3 TinderboxPrint: statements. This will just be simpler, no ambiguous cases.

This commit is contained in:
mcafee%netscape.com 2002-12-27 09:33:38 +00:00
Родитель 27c6aebd18
Коммит b06789db11
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -85,7 +85,8 @@ sub find_scrape_data {
# Strip off the TinderboxPrint: part of the line
chomp;
s/.*TinderboxPrint://;
@line = split(';', $_);
#@line = split(';', $_);
push(@line, $_);
push(@rv, @line);
}
}