You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 16, 2019. It is now read-only.
INFO:gmusicfs:Logging in...
Traceback (most recent call last):
File "/usr/local/bin/gmusicfs", line 9, in
load_entry_point('GMusicFS==0.1', 'console_scripts', 'gmusicfs')()
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 476, in main
fs = GMusicFS(mountpoint, true_file_size=args.true_file_size, verbose=verbosity, scan_library= not args.nolibrary)
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 240, in init
true_file_size=true_file_size, verbose=verbose, scan=scan_library)
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 132, in init
self.__login_and_setup(username, password)
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 176, in __login_and_setup
self.api.login(username, password) TypeError: login() takes at least 4 arguments (3 given)
The text was updated successfully, but these errors were encountered:
I got the same error with thunner, that I tried few days ago; if I remember well, the gmusicapi (concerning Webclient) had been modified but the project GMusicFS had no new commits for years, so I recommend you to check a forked one like this one: https://github.com/benklop/GMusicFS
deviceId is missing in the class. It's not GMusicAPI's fault, but GmusicFS'. To fix it, add deviceId to self.api.login in gmusicfs.py:176 like so self.api.login(username, password, deviceId)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
INFO:gmusicfs:Logging in...
Traceback (most recent call last):
File "/usr/local/bin/gmusicfs", line 9, in
load_entry_point('GMusicFS==0.1', 'console_scripts', 'gmusicfs')()
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 476, in main
fs = GMusicFS(mountpoint, true_file_size=args.true_file_size, verbose=verbosity, scan_library= not args.nolibrary)
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 240, in init
true_file_size=true_file_size, verbose=verbose, scan=scan_library)
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 132, in init
self.__login_and_setup(username, password)
File "/usr/local/lib/python2.7/dist-packages/gmusicfs/gmusicfs.py", line 176, in __login_and_setup
self.api.login(username, password)
TypeError: login() takes at least 4 arguments (3 given)
The text was updated successfully, but these errors were encountered: