diff options
-rwxr-xr-x | upload-wiki.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/upload-wiki.pl b/upload-wiki.pl index 4dd63bf5bf..8a789444b6 100755 --- a/upload-wiki.pl +++ b/upload-wiki.pl @@ -138,7 +138,7 @@ sub upload_article { $mw->edit( { action => 'edit', title => $pagename, - text => $text }, { skip_encoding => 1 } ) || print 'Error: ' . $mw->{error}->{code} . ': ' . $mw->{error}->{details} . '\n'; + text => $text }, { skip_encoding => 1 } ) || print 'Error: ' . $mw->{error}->{code} . ': ' . $mw->{error}->{details} . "\n"; } File::Find::find( {wanted => \&upload_article}, 'wiki/' ); |