aboutsummaryrefslogtreecommitdiffstats
path: root/snekbox.py
diff options
context:
space:
mode:
authorGravatar Christopher Baklid <[email protected]>2018-07-24 22:09:49 +0200
committerGravatar Christopher Baklid <[email protected]>2018-07-24 22:09:49 +0200
commit6a0e832c35a3b3f752df75272f31efb3fede3f9c (patch)
treeb077ba7763dacf57009af64a34e2ff6b832ad9ed /snekbox.py
parentupdate pipfile lock, handle value error, show error codes when unhandled (diff)
lint and skip rabbitmq
Diffstat (limited to 'snekbox.py')
-rw-r--r--snekbox.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/snekbox.py b/snekbox.py
index f74095b..ddde563 100644
--- a/snekbox.py
+++ b/snekbox.py
@@ -47,11 +47,11 @@ class Snekbox(object):
self.python_binary, '-ISq', '-c', cmd]
try:
proc = subprocess.Popen(args,
- stdin=subprocess.PIPE,
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE,
- env=self.env,
- universal_newlines=True)
+ stdin=subprocess.PIPE,
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE,
+ env=self.env,
+ universal_newlines=True)
except ValueError:
return 'ValueError: embedded null byte'