Files
mopidy-radionet/venv/lib/python3.7/site-packages/mopidy/local.py
2020-01-18 20:01:00 +01:00

14 lines
431 B
Python

# XXX This module is only here to ease the migration from Mopidy-Local being
# bundled with Mopidy to being an independent extension. This file should
# probably be removed before Mopidy 3.0 final ships.
import warnings
from mopidy_local import * # noqa
warnings.warn(
"Mopidy-Local has been moved to its own project. "
"Update any imports from `mopidy.local` to use `mopidy_local` instead.",
DeprecationWarning,
)