Browse Source

SteamID: fix for py3.3 str format bug

pull/35/merge
Rossen Georgiev 8 years ago
parent
commit
f5abb1a8f5
  1. 2
      steam/steamid.py

2
steam/steamid.py

@ -124,7 +124,7 @@ class SteamID(intBase):
"""
return "STEAM_%d:%d:%d" % (
self.universe,
int(self.universe),
self.id % 2,
self.id >> 1,
)

Loading…
Cancel
Save