Browse Source

SteamAuthenticator.get_confirmation_key paramerter order fix #38

pull/35/head
philippj 9 years ago
parent
commit
fa0e88c99e
  1. 4
      steam/guard.py

4
steam/guard.py

@ -101,8 +101,8 @@ class SteamAuthenticator(object):
:return: trade confirmation key
:rtype: str
"""
return generate_confirmation_key(b64decode(self.identity_secret), tag,
self.get_time() if timestamp is None else timestamp)
return generate_confirmation_key(b64decode(self.identity_secret),
self.get_time() if timestamp is None else timestamp, tag)
def _send_request(self, action, params):
action_map = {

Loading…
Cancel
Save