Skip to content

Commit

Permalink
Fixed UTF-8 encoding of HTML output files.
Browse files Browse the repository at this point in the history
  • Loading branch information
chromatic committed Mar 20, 2012
1 parent e85e4fb commit aedd50a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Pod/PseudoPod/DOM/App/ToHTML.pm
Expand Up @@ -33,7 +33,7 @@ sub process_files_with_output
$parser->complain_stderr(1); # output errors on STDERR instead $parser->complain_stderr(1); # output errors on STDERR instead


die "Unable to open file ($source)\n" unless -e $source; die "Unable to open file ($source)\n" unless -e $source;
$parser->parse_file($source); $parser->parse_file( open_fh( $source ) );


$corpus->add_document( $parser->get_document, $parser ); $corpus->add_document( $parser->get_document, $parser );
} }
Expand Down

0 comments on commit aedd50a

Please sign in to comment.