##// END OF EJS Templates
add comment clarifying that `out is None` when verbose=True
MinRK -
Show More
@@ -51,6 +51,8 b' class PDFPostProcessor(PostProcessorBase):'
51 51 out, err = p.communicate()
52 52 if p.returncode:
53 53 if self.verbose:
54 # verbose means I didn't capture stdout with PIPE,
55 # so it's already been displayed and `out` is None.
54 56 out = u''
55 57 else:
56 58 out = out.decode('utf-8', 'replace')
General Comments 0
You need to be logged in to leave comments. Login now