Skip to content

Commit

Permalink
scantailor: Fix bug that made manual adjustments impossible
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaiter committed May 13, 2015
1 parent a19e878 commit 371258c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion spreadsplug/scantailor.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,8 @@ def process(self, pages, target_path):
"otherwise be ignored.")
time.sleep(5)
logger.info("Opening ScanTailor GUI for manual adjustment")
util.get_subprocess([GUI_BIN, unicode(projectfile)])
proc = util.get_subprocess([GUI_BIN, unicode(projectfile)])
proc.wait()
# Check if the user already generated output files from the GUI
if not sum(1 for x in out_dir.glob('*.tif')) == len(pages):
logger.info("Generating output images from ScanTailor "
Expand Down

0 comments on commit 371258c

Please sign in to comment.