Browse Source

fix games_played() for py3; v0.8.12

pull/60/head v0.8.12
Rossen Georgiev 8 years ago
parent
commit
ec1fb51a99
  1. 4
      steam/__init__.py
  2. 8
      steam/client/builtins/user.py

4
steam/__init__.py

@ -1,7 +1,7 @@
__version__ = "0.8.11"
__version__ = "0.8.12"
__author__ = "Rossen Georgiev"
version_info = (0, 8, 11)
version_info = (0, 8, 12)
from steam.steamid import SteamID
from steam.globalid import GlobalID

8
steam/client/builtins/user.py

@ -121,10 +121,8 @@ class User(object):
if not isinstance(app_ids, list):
raise ValueError("Expected app_ids to be of type list")
self.current_games_played = app_ids = map(int, app_ids)
self.current_games_played = app_ids = list(map(int, app_ids))
self.send(MsgProto(EMsg.ClientGamesPlayed),
{
'games_played': map(lambda app_id: {'game_id': app_id}, app_ids)
}
)
{'games_played': [{'game_id': app_id} for app_id in app_ids]}
)

Loading…
Cancel
Save