mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-28 03:00:35 +00:00
validate:launcher:baseclasses: Avoid raising axception when all getting scenarios
https://bugzilla.gnome.org/show_bug.cgi?id=743994
This commit is contained in:
parent
00b222f38f
commit
be20eb015c
1 changed files with 3 additions and 4 deletions
|
@ -21,7 +21,6 @@
|
|||
|
||||
import os
|
||||
import sys
|
||||
import imp
|
||||
import re
|
||||
import time
|
||||
import utils
|
||||
|
@ -1264,7 +1263,7 @@ class ScenarioManager(Loggable):
|
|||
return scenarios
|
||||
|
||||
def get_scenario(self, name):
|
||||
if os.path.isabs(name) and name.endswith(self.FILE_EXTENDION):
|
||||
if name is not None and os.path.isabs(name) and name.endswith(self.FILE_EXTENDION):
|
||||
scenarios = self.discover_scenarios([name])
|
||||
|
||||
if scenarios:
|
||||
|
|
Loading…
Reference in a new issue