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-10 12:48:34 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2008-08-10 12:48:34 (GMT)
commitae7293c6c1e512073ae7f796916b6a0a1aa84ff8 (patch)
treec69a68ea009c865b90034e0049088edf8dd33336 /scripts
parent9e0ddd9ed99de315e56b003da3c631526b3fb19e (diff)
Switch to Xvnc
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 19224f1..8cb2a2c 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(['Xvfb', '-ac', ':%d' % port],
+ p = subprocess.Popen(['Xvnc', '-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 xfvb, will use the default display.'
+ print 'Cannot execute Xvnc, will use the default display.'
return None
def lint(self, module):