Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2008-08-05 00:30:23 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2008-08-05 00:30:23 (GMT)
commit111b5bb9a67fbe0ebeb1bc386fd2470e47c45ffe (patch)
tree133ad2d83b54f57958eb340670fadb710b39405d /scripts
parentae5a9fc5a5cf5f791860d7cac276ae517625b1b0 (diff)
Do not use a pipe to ignore output.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check.py b/scripts/check.py
index 7679e6e..d96e149 100644
--- a/scripts/check.py
+++ b/scripts/check.py
@@ -27,7 +27,7 @@ class cmd_check(Command):
port = ':%d' % random.randrange(1000, 50000)
try:
- subprocess.Popen(['Xvfb', '-ac', port], stderr=subprocess.PIPE)
+ subprocess.Popen(['Xvfb', '-ac', port])
os.environ['DISPLAY'] = port
except OSError:
print 'Cannot execute xfvb, will use the default display.'