summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Sotoudeh <matthew@masot.net>2024-04-12 15:41:51 -0700
committerMatthew Sotoudeh <matthew@masot.net>2024-04-12 15:41:51 -0700
commit6378e436a0a21d90526532f4646904da051ff8c9 (patch)
tree57acf3b7f8dc965bc714f80c45a9ad05ddd61747
parent706ad9101ceed31812483beee8d62f202e975981 (diff)
let stderr through
-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