Fix 'stoped' typo

Reviewers: thiblahute

Differential Revision: http://phabricator.freedesktop.org/D137
This commit is contained in:
Guillaume Desmottes 2015-04-29 14:12:01 +02:00
parent 4c70c57427
commit db366e0a37
3 changed files with 3 additions and 3 deletions

View file

@ -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,

View file

@ -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")

View file

@ -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):