Legend:
- Unmodified
- Added
- Removed
-
shepherd
r31 r33 128 128 my $channel_data = { }; 129 129 my $starttime, my $endtime; 130 my $input_postprocess_file = "$CWD/ output_pre_postprocessors.xml";130 my $input_postprocess_file = "$CWD/reconciled_output_pre_postprocessors.xml"; 131 131 my $insufficient_grabber_data = 0; 132 132 … … 554 554 555 555 my %writer_args = ( encoding => 'ISO-8859-1' ); 556 my $fh = new IO::File("> input_postprocess_file") || die "can't open outputfile $input_postprocess_file: $!";556 my $fh = new IO::File(">$input_postprocess_file") || die "can't open outputfile $input_postprocess_file: $!"; 557 557 $writer_args{OUTPUT} = $fh; 558 558 my $writer = new XMLTV::Writer(%writer_args); … … 561 561 562 562 for my $ch (sort keys %$channels) { 563 $writer->write_channel({'display-name' => [[ $ch, $langs]], 'id' => $channels->{$ch}} );563 $writer->write_channel({'display-name' => [[ $ch, "en" ]], 'id' => $channels->{$ch}} ); 564 564 } 565 565
