summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--earlpy/earlpy.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/earlpy/earlpy.py b/earlpy/earlpy.py
index a1f4e17..5a1cb52 100644
--- a/earlpy/earlpy.py
+++ b/earlpy/earlpy.py
@@ -58,8 +58,7 @@ class Parser:
return result
def parse_file(self, path):
- res = subprocess.run([self.parser, path], stdout=subprocess.PIPE,
- stderr=subprocess.PIPE)
+ res = subprocess.run([self.parser, path], stdout=subprocess.PIPE)
if res.returncode:
print("FAIL:", res.stderr.decode("utf-8"))
raise ValueError
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback