Browse Source

fix proto_fill_from_dict handling of lists

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

5
steam/util/__init__.py

@ -114,7 +114,10 @@ def proto_fill_from_dict(message, data, clear=True):
proto_fill_from_dict(getattr(message, key), val) proto_fill_from_dict(getattr(message, key), val)
else: else:
setattr(message, key, val) if isinstance(val, list):
getattr(message, key).extend(val)
else:
setattr(message, key, val)
return message return message

Loading…
Cancel
Save