Skip to content
This repository has been archived by the owner on Dec 7, 2020. It is now read-only.

Rename actor.py to backend.py to be more in line with other plugins #120

Merged
merged 1 commit into from
Jul 5, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mopidy_gmusic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_config_schema(self):
return schema

def setup(self, registry):
from .actor import GMusicBackend
from .backend import GMusicBackend
from .scrobbler_frontend import GMusicScrobblerFrontend
registry.add('backend', GMusicBackend)
registry.add('frontend', GMusicScrobblerFrontend)
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import mock

from mopidy_gmusic import (
GMusicExtension, actor as backend_lib, scrobbler_frontend)
GMusicExtension, backend as backend_lib, scrobbler_frontend)


class ExtensionTest(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_library.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import unittest

from mopidy_gmusic import actor as backend_lib
from mopidy_gmusic import backend as backend_lib

from tests.test_extension import ExtensionTest

Expand Down