mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-18 20:25:25 +00:00
Fix 'stoped' typo
Reviewers: thiblahute Differential Revision: http://phabricator.freedesktop.org/D137
This commit is contained in:
parent
4c70c57427
commit
db366e0a37
3 changed files with 3 additions and 3 deletions
|
@ -315,7 +315,7 @@ gst_validate_report_load_issues (void)
|
|||
_("Query position reported a value outside of the current expected "
|
||||
"segment"), NULL);
|
||||
REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_NOT_ENDED,
|
||||
_("All the actions were not executed before the program stoped"), NULL);
|
||||
_("All the actions were not executed before the program stopped"), NULL);
|
||||
REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_FILE_MALFORMED,
|
||||
_("The scenario file was malformed"), NULL);
|
||||
REGISTER_VALIDATE_ISSUE (CRITICAL, SCENARIO_ACTION_EXECUTION_ERROR,
|
||||
|
|
|
@ -103,4 +103,4 @@ class HTTPServer(loggable.Loggable):
|
|||
if self._process:
|
||||
self._process.terminate()
|
||||
self._process = None
|
||||
self.debug("Server stoped")
|
||||
self.debug("Server stopped")
|
||||
|
|
|
@ -102,7 +102,7 @@ class Xvfb(VirtualFrameBufferServer):
|
|||
if self._process:
|
||||
self._process.terminate()
|
||||
self._process = None
|
||||
self.debug("xvfb stoped")
|
||||
self.debug("xvfb stopped")
|
||||
|
||||
|
||||
def get_virual_frame_buffer_server(options):
|
||||
|
|
Loading…
Reference in a new issue