Browse Source

steamid.community_url is now https

pull/1/merge
Rossen Georgiev 10 years ago
parent
commit
b43b2cd6fc
  1. 2
      README.rst
  2. 4
      steam/steamid.py

2
README.rst

@ -96,7 +96,7 @@ SteamID
>>> group.as_steam3 >>> group.as_steam3
'[g:1:4]' '[g:1:4]'
>>> group.community_url >>> group.community_url
'http://steamcommunity.com/gid/103582791429521412' 'https://steamcommunity.com/gid/103582791429521412'

4
steam/steamid.py

@ -188,6 +188,6 @@ class SteamID(object):
EType.Clan: "gid/%s", EType.Clan: "gid/%s",
} }
if self.type in suffix: if self.type in suffix:
url = "http://steamcommunity.com/%s" % suffix[self.type] url = "https://steamcommunity.com/%s" % suffix[self.type]
return url % self.as_64 return url % self.as_64
return '' return None

Loading…
Cancel
Save