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 Mar 31, 2020. It is now read-only.
A problem lies in incorrect syntax of the error print statement :
adsbibdesk --help
Traceback (most recent call last):
File "/Users/chris/anaconda3/bin/adsbibdesk", line 9, in
load_entry_point('adsbibdesk==3.2.0', 'console_scripts', 'adsbibdesk')()
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 542, in load_entry_point
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 2569, in load_entry_point
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 2229, in load
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 2235, in resolve
File "", line 969, in _find_and_load
File "", line 954, in _find_and_load_unlocked
File "", line 896, in _find_spec
File "", line 1139, in find_spec
File "", line 1115, in _get_spec
File "", line 1096, in _legacy_get_spec
File "", line 444, in spec_from_loader
File "", line 533, in spec_from_file_location
File "/Users/chris/anaconda3/lib/python3.5/site-packages/adsbibdesk-3.2.0-py3.5.egg/adsbibdesk.py", line 69
print msg
^
SyntaxError: Missing parentheses in call to 'print'
The text was updated successfully, but these errors were encountered:
I'm finding the same problem. Looking at the source, the error message in question is a request to install PyObjC from the given URL. Doing so using pip ensures that from the command line, I can import AppKit, which is the thing whose failure throws the error. Nonetheless, I continue to get the error. So I'm a bit confused about what is going on.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
A problem lies in incorrect syntax of the error print statement :
adsbibdesk --help
Traceback (most recent call last):
File "/Users/chris/anaconda3/bin/adsbibdesk", line 9, in
load_entry_point('adsbibdesk==3.2.0', 'console_scripts', 'adsbibdesk')()
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 542, in load_entry_point
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 2569, in load_entry_point
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 2229, in load
File "/Users/chris/anaconda3/lib/python3.5/site-packages/setuptools-23.0.0-py3.5.egg/pkg_resources/init.py", line 2235, in resolve
File "", line 969, in _find_and_load
File "", line 954, in _find_and_load_unlocked
File "", line 896, in _find_spec
File "", line 1139, in find_spec
File "", line 1115, in _get_spec
File "", line 1096, in _legacy_get_spec
File "", line 444, in spec_from_loader
File "", line 533, in spec_from_file_location
File "/Users/chris/anaconda3/lib/python3.5/site-packages/adsbibdesk-3.2.0-py3.5.egg/adsbibdesk.py", line 69
print msg
^
SyntaxError: Missing parentheses in call to 'print'
The text was updated successfully, but these errors were encountered: