##// END OF EJS Templates
removed sehll=True
marcmolla -
Show More
@@ -81,7 +81,7 b' class PDFPostProcessor(PostProcessorBase):'
81 with open(os.devnull, 'rb') as null:
81 with open(os.devnull, 'rb') as null:
82 stdout = subprocess.PIPE if not self.verbose else None
82 stdout = subprocess.PIPE if not self.verbose else None
83 for index in range(count):
83 for index in range(count):
84 p = subprocess.Popen(command, stdout=stdout, stdin=null, shell=True)
84 p = subprocess.Popen(command, stdout=stdout, stdin=null)
85 out, err = p.communicate()
85 out, err = p.communicate()
86 if p.returncode:
86 if p.returncode:
87 if self.verbose:
87 if self.verbose:
General Comments 0
You need to be logged in to leave comments. Login now