File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- __version__ = "1.0.9 "
1
+ __version__ = "1.0.10 "
2
2
3
3
import argparse
4
4
import logging
5
+ import os
5
6
import shutil
6
7
import signal
7
8
import sys
@@ -101,7 +102,7 @@ def signal_handler(sign, frame):
101
102
signal .signal (signal .SIGINT , signal_handler )
102
103
103
104
# Read PDFs from path
104
- docs = Documents (args ["path" ])
105
+ docs = Documents (path = os . path . abspath ( args ["path" ]) )
105
106
logger .info ('Finding PDFs in ' + docs .path )
106
107
try :
107
108
find_pdfs_in_path (docs , docs .path )
Original file line number Diff line number Diff line change 49
49
"yattag==1.14.0" ,
50
50
],
51
51
name = "PDFScraper" ,
52
- version = "1.0.9 " ,
52
+ version = "1.0.10 " ,
53
53
author = "Erik Kastelec" ,
54
54
author_email = "erikkastelec@gmail.com" ,
55
55
description = "PDF text and table search" ,
You can’t perform that action at this time.
0 commit comments