Browse Source

fixed SteamID.__str__() not returning a str

pull/1/merge
Rossen Georgiev 10 years ago
parent
commit
5f6b65a5e2
  1. 2
      steam/steamid.py

2
steam/steamid.py

@ -152,7 +152,7 @@ class SteamID(object):
)
def __str__(self):
return self.as_64
return str(self.as_64)
@property
def as_steam2(self):

Loading…
Cancel
Save