mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Smarter check positions
This commit is contained in:
parent
0eb0c88d3d
commit
65074b4375
@ -61,10 +61,6 @@ class Command(BaseCommand):
|
||||
|
||||
self.verbosity = options["verbosity"]
|
||||
|
||||
if not os.path.exists(self.CONSUME):
|
||||
raise CommandError("Consumption directory {} does not exist".format(
|
||||
self.CONSUME))
|
||||
|
||||
self._setup()
|
||||
|
||||
try:
|
||||
@ -109,6 +105,17 @@ class Command(BaseCommand):
|
||||
self._cleanup(pngs, pdf)
|
||||
|
||||
def _setup(self):
|
||||
|
||||
if not self.CONSUME:
|
||||
raise CommandError(
|
||||
"The CONSUMPTION_DIR settings variable does not appear to be "
|
||||
"set."
|
||||
)
|
||||
|
||||
if not os.path.exists(self.CONSUME):
|
||||
raise CommandError("Consumption directory {} does not exist".format(
|
||||
self.CONSUME))
|
||||
|
||||
for d in (self.SCRATCH, self.MEDIA_PDF):
|
||||
try:
|
||||
os.makedirs(d)
|
||||
@ -147,7 +154,7 @@ class Command(BaseCommand):
|
||||
|
||||
def _get_ocr(self, pngs):
|
||||
|
||||
self._render(" OCRing the PDF", 1)
|
||||
self._render(" OCRing the PDF", 2)
|
||||
|
||||
raw_text = self._ocr(pngs, self.DEFAULT_OCR_LANGUAGE)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user