소스 검색

typo

master
Pascal Gloor 5 년 전
부모
커밋
d7d47c7262
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      bin/autodoc_process.pl

+ 2
- 2
bin/autodoc_process.pl 파일 보기

@@ -122,12 +122,12 @@ sub ocr_file {
my($file) = @_;
my $txt = '';

open(OCR,"tesseract -l eng+deu+fra+ita %s - |", $file));
open(OCR,sprintf("tesseract -l eng+deu+fra+ita %s - |", $file));
while(<OCR>) {
$txt .= $_;
}
close(OCR);
return $txt;
}
sub create_page_words {

Loading…
취소
저장