Hey guys, installing using pip3.7 and got the following:
File "/Users/jm250139/Downloads/PYSPKAC/pyspkac-0.7/pyspkac/spkac.py", line 216
except PyAsn1Error, e :
in python2.6+ you can replace the comma with "as" and as of python 3 it is required:
https://www.tutorialspoint.com/What-is-the-difference-between-except-Exception-as-e-and-except-Exception-e-in-Python
Just thought you might want to know.
Hey guys, installing using pip3.7 and got the following:
File "/Users/jm250139/Downloads/PYSPKAC/pyspkac-0.7/pyspkac/spkac.py", line 216
except PyAsn1Error, e :
in python2.6+ you can replace the comma with "as" and as of python 3 it is required:
https://www.tutorialspoint.com/What-is-the-difference-between-except-Exception-as-e-and-except-Exception-e-in-Python
Just thought you might want to know.