Browse Source

fix proto_fill_from_dict handling of lists

pull/41/head
Rossen Georgiev 9 years ago
parent
commit
7bdc9231f1
  1. 3
      steam/util/__init__.py

3
steam/util/__init__.py

@ -113,6 +113,9 @@ def proto_fill_from_dict(message, data, clear=True):
))
proto_fill_from_dict(getattr(message, key), val)
else:
if isinstance(val, list):
getattr(message, key).extend(val)
else:
setattr(message, key, val)

Loading…
Cancel
Save