fix: Fix invalid escape sequence warning in ocr_backend_manager.py
The string contained C:\Program Files\Tesseract-OCR which Python interpreted as escape sequences (\P is invalid). Fixed by escaping backslashes: C:\Program Files\Tesseract-OCR
This commit is contained in:
parent
f9dbde1a95
commit
88f112dfa2
|
|
@ -171,7 +171,7 @@ To install Tesseract:
|
||||||
https://github.com/UB-Mannheim/tesseract/wiki
|
https://github.com/UB-Mannheim/tesseract/wiki
|
||||||
|
|
||||||
2. Run the installer and note the installation path
|
2. Run the installer and note the installation path
|
||||||
(usually C:\Program Files\Tesseract-OCR)
|
(usually C:\\Program Files\\Tesseract-OCR)
|
||||||
|
|
||||||
3. Add to PATH or use the auto-detect feature
|
3. Add to PATH or use the auto-detect feature
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue