Python3 Migrate

This commit is contained in:
MariuszC
2020-01-18 20:01:00 +01:00
parent ea05af2d15
commit 6cd7e0fe44
691 changed files with 201846 additions and 598 deletions

View File

@@ -0,0 +1,13 @@
# 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,
)