From d3c0a169323bcea81910ecf55ba012b6eb8732d3 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 28 Aug 2016 22:35:45 +0100 Subject: [PATCH] docs: fix steam_id property in cli example; #45 --- docs/user_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user_guide.rst b/docs/user_guide.rst index 2eadd53..15df65a 100644 --- a/docs/user_guide.rst +++ b/docs/user_guide.rst @@ -195,7 +195,7 @@ Configuring logging will lets us see the internal interactions. msg, = client.wait_event(EMsg.ClientAccountInfo) print "Logged on as: %s" % msg.body.persona_name - print "SteamID: %s" % repr(client.steamid) + print "SteamID: %s" % repr(client.steam_id) try: client.run_forever()