summaryrefslogtreecommitdiff
path: root/regtest
diff options
context:
space:
mode:
Diffstat (limited to 'regtest')
-rw-r--r--regtest/backends/text.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/regtest/backends/text.py b/regtest/backends/text.py
index 598aab8e..8aa59fac 100644
--- a/regtest/backends/text.py
+++ b/regtest/backends/text.py
@@ -31,7 +31,7 @@ class Text(Backend):
cmd = [self._pdftotext, doc_path, out_path + '.txt']
if password is not None:
cmd.extend(['-opw', password])
- p = subprocess.Popen([cmd, stderr = subprocess.PIPE)
+ p = subprocess.Popen(cmd, stderr = subprocess.PIPE)
return self._check_exit_status(p, out_path)
def _create_diff(self, ref_path, result_path):