From 1c350ac570815cfd15184672bfc7209d3e943af1 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 9 Feb 2017 19:03:15 +0200 Subject: [PATCH] docs: fix friend add example in user_guide Reported in #71 --- docs/user_guide.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/user_guide.rst b/docs/user_guide.rst index 72648bd..4b047cb 100644 --- a/docs/user_guide.rst +++ b/docs/user_guide.rst @@ -174,7 +174,7 @@ After that we logout. client.logout() -You can find more examples at https://github.com/ValvePython/steam/tree/master/recipes +You can find more examples at https://github.com/ValvePython/steam/tree/master/recipes Sending a message ----------------- @@ -189,13 +189,13 @@ Example of sending a protobuf message and handling the response. from steam.enums.emsg import EMsg message = MsgProto(EMsg.ClientAddFriend) - message.body.steamid_to_add = 77777777777 + message.body.steamid_to_add = 76561197960265728 resp = client.send_message_and_wait(message, EMsg.ClientAddFriendResponse) if resp.eresult == EResult.OK: - print "Send a friend request to %s (%d)" % (repr(body.persona_name_added), - body.steam_id_added, + print "Send a friend request to %s (%d)" % (repr(resp.body.persona_name_added), + resp.body.steam_id_added, ) else: print "Error: %s" % EResult(resp.eresult)