mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
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:
parent
992292f8ae
commit
4322138c8f
1 changed files with 1 additions and 1 deletions
|
@ -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. """
|
||||
|
|
Loading…
Reference in a new issue