mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
validate:launcher: Fix usage in an uninstalled environment
This commit is contained in:
parent
17586b80b1
commit
20879e9c69
1 changed files with 5 additions and 1 deletions
|
@ -18,7 +18,11 @@
|
|||
# Boston, MA 02110-1301, USA.
|
||||
""" Some utilies. """
|
||||
|
||||
import config
|
||||
try:
|
||||
import config
|
||||
except ImportError:
|
||||
from . import config
|
||||
|
||||
import os
|
||||
import re
|
||||
import shutil
|
||||
|
|
Loading…
Reference in a new issue