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
Hey there!
I'm having issues setting up last-social-activity, is it possible that this doesn't work with python 3.5+? As soon as I add it in INSTALLED_APPS I'm getting
Missing parentheses in call to 'print' (last_social_activity.py, line 128)
which refers to print e
When I change that to print (e)
it says
Invalid template library specified. ImportError raised when trying to load 'last_social_activity.templatetags.last_social_activity': No module named 'httplib'
Any idea what I might be doing wrong and/or might be the issue here?
Best regards,
M
The text was updated successfully, but these errors were encountered:
Hey, thanks for getting back and for the hint with http.client. This brings me one step further. Had to change the line in all social networks and in fiveHundred some more brackets to print (media).
Now it throws one more error, probably related to the httplib aswell. Could you give me one more pointer how to solve this?
name 'HttpError' is not defined
in last_social_activity\social_networks\fiveHundred.py in get_last_media, line 49 which is
except (HttpError, HTTPException, ValueError) as e:
Hey there!
I'm having issues setting up last-social-activity, is it possible that this doesn't work with python 3.5+? As soon as I add it in INSTALLED_APPS I'm getting
which refers to
print e
When I change that to
print (e)
it says
Any idea what I might be doing wrong and/or might be the issue here?
Best regards,
M
The text was updated successfully, but these errors were encountered: