validate: fix typo if Xvfb is not installed

Reviewed-by: Thibault Saunier <tsaunier@gnome.org>
Differential Revision: https://phabricator.freedesktop.org/D375
This commit is contained in:
Guillaume Desmottes 2016-05-24 14:04:25 +00:00 committed by Thibault Saunier
parent 992292f8ae
commit 4322138c8f

View file

@ -95,7 +95,7 @@ class Xvfb(VirtualFrameBufferServer):
self._process = None
except Exception as ex:
return (False, "Could not launch %s %s\n"
"Make sure Xvbf is installed" % (self._command, ex))
"Make sure Xvfb is installed" % (self._command, ex))
def stop(self):
""" Stop the xvfb subprocess if running. """