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-11 08:35:42 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2008-08-11 08:35:42 (GMT)
commit6effa45caba64b75e05a0e525f1e37a6f5ea5e75 (patch)
treedce6859338d6c3d4c0057ec97036b0ee7f17c81a /scripts
parentd682c333477d46334bf27cda4e981db30da0c785 (diff)
Revert "Switch to Xvnc"
This reverts commit ae7293c6c1e512073ae7f796916b6a0a1aa84ff8.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/check.py b/scripts/check.py
index 8cb2a2c..19224f1 100644
--- a/scripts/check.py
+++ b/scripts/check.py
@@ -36,7 +36,7 @@ class cmd_check(Command):
for port in range(100, 1000):
if not check_display(port):
try:
- p = subprocess.Popen(['Xvnc', '-ac', ':%d' % port],
+ p = subprocess.Popen(['Xvfb', '-ac', ':%d' % port],
stdout=open(os.devnull, "w"),
stderr=subprocess.STDOUT)
@@ -51,7 +51,7 @@ class cmd_check(Command):
except OSError:
break
- print 'Cannot execute Xvnc, will use the default display.'
+ print 'Cannot execute xfvb, will use the default display.'
return None
def lint(self, module):