py-analytics
py-analytics copied to clipboard
Error importing module
When importing the analytics module I'm having this error:
File "/some/path/__init__.py", line 5, in <module>
import analytics
File "/some/path/analytics/analytics/__init__.py", line 23
except Exception, e:
^
SyntaxError: invalid syntax
Seems you should change that for: except Exception as e: in this line here?
https://github.com/numan/py-analytics/blob/master/analytics/init.py#L23