#-----------------------------------------------------------------------------
|
# Copyright (c) 2023, PyInstaller Development Team.
|
#
|
# This file is distributed under the terms of the Apache License 2.0
|
#
|
# The full license is available in LICENSE, distributed with
|
# this software.
|
#
|
# SPDX-License-Identifier: Apache-2.0
|
#-----------------------------------------------------------------------------
|
|
# Starting with v4.3.5, the `ffpyplayer` package attempts to use `site.USER_BASE` in path manipulation functions.
|
# As frozen application runs with disabled `site`, the value of this variable is `None`, and causes path manipulation
|
# functions to raise an error. As a work-around, we set `site.USER_BASE` to an empty string, which is also what the
|
# fake `site` module available in PyInstaller prior to v5.5 did.
|
import site
|
|
if site.USER_BASE is None:
|
site.USER_BASE = ''
|