aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pydora/audio_backend.py (renamed from pydora/mpg123.py)0
-rw-r--r--[-rwxr-xr-x]pydora/player.py6
2 files changed, 3 insertions, 3 deletions
diff --git a/pydora/mpg123.py b/pydora/audio_backend.py
index 9599771..9599771 100644
--- a/pydora/mpg123.py
+++ b/pydora/audio_backend.py
diff --git a/pydora/player.py b/pydora/player.py
index 32853d8..653fb35 100755..100644
--- a/pydora/player.py
+++ b/pydora/player.py
@@ -3,7 +3,7 @@
3Sample Barebones Pandora Player 3Sample Barebones Pandora Player
4 4
5This is a very simple Pandora player that streams music from Pandora. It 5This is a very simple Pandora player that streams music from Pandora. It
6requires mpg123 to function. No songs are downloaded, they are streamed 6requires mpg123 or VLC to function. No songs are downloaded, they are streamed
7directly from Pandora's servers. 7directly from Pandora's servers.
8""" 8"""
9from __future__ import print_function 9from __future__ import print_function
@@ -13,8 +13,8 @@ import sys
13from pandora import clientbuilder 13from pandora import clientbuilder
14 14
15from .utils import Colors, Screen 15from .utils import Colors, Screen
16from .mpg123 import MPG123Player, VLCPlayer 16from .audio_backend import MPG123Player, VLCPlayer
17from .mpg123 import UnsupportedEncoding, PlayerUnusable 17from .audio_backend import UnsupportedEncoding, PlayerUnusable
18 18
19 19
20class PlayerCallbacks(object): 20class PlayerCallbacks(object):