Skip to content

Commit

Permalink
Call callback method with right params.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiri Hnidek committed Feb 16, 2015
1 parent be28a53 commit fcd8aa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vrsent/verse_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def cb_receive_user_authenticate(self, username, methods):
"""
# Call parent method to print debug information
if self.debug_print is True:
super(VerseSession, self).cb_receive_user_authenticate(username, self.password)
super(VerseSession, self).cb_receive_user_authenticate(username, methods)
# Default method to get username and password
if username == "":
if self.username is None:
Expand Down

0 comments on commit fcd8aa9

Please sign in to comment.