Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit 36dc4e4

Browse files
committed
Merge pull request #104 from sindrig/v1.4.4
V1.4.4
2 parents 2bd9101 + 6234c79 commit 36dc4e4

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ You will need libspotify, libffi-dev and libasound2-dev installed.
1515

1616
Use your distribution's package manager for libffi-dev and libasound2-dev.
1717

18-
To install libspotify, see `Pyspotify installation <https://docs.mopidy.com/en/v0.8.1/installation/libspotify/>`_. (It's also available in the `AUR <https://aur.archlinux.org/packages/libspotify/>`_).
18+
To install libspotify, see `Pyspotify installation <https://pyspotify.mopidy.com/en/latest/installation/#install-from-source>`_. (It's also available in the `AUR <https://aur.archlinux.org/packages/libspotify/>`_).
1919

2020
For DBus integration you'll need python-dbus and python-gobject2. Use your distribution's package manager. Spoppy will work without these packages but won't expose it's DBus procedures.
2121

spoppy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111

1212
def get_version():
13-
return '1.4.3'
13+
return '1.4.4'
1414

1515
if click:
1616
@click.command()

spoppy/config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
from appdirs import user_cache_dir
55

6+
try:
7+
# python2.7
8+
input = raw_input
9+
except NameError:
10+
pass
11+
612
CONFIG_FILE_NAME = os.path.join(
713
user_cache_dir(appname='spoppy'), '.creds'
814
)

0 commit comments

Comments
 (0)