AuthError Exception on line 100 broken. #8
Labels
No labels
Bug
Enhancement
Feature Suggestion
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: code/twython#8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Code :
from twython import twython
try:
twython.setup(username=username, password=password)
except twython.TwythonError, error:
raise forms.ValidationError(error)
Exception Value: init() takes exactly 2 arguments (3 given)
Exception Location: /data/projects/standalone/twython/twython.py in init, line 100
eh ... it didn't take the indents while posting. trying again
from twython import twython
try:
--twython.setup(username=username, password=password)
except twython.TwythonError, error:
--raise forms.Validation(error)
try with a s/--//g
nevermind ... this thing is seriously b0rked .. c/o http://pastebin.com/f7184fd45 to see what i mean.
Hey there,
I just pushed what (I believe) is a fix for this issue. Feel free to try it out and let me know if there's still a problem! ;)