Skip to content

Commit

Permalink
fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
umbresp committed Nov 19, 2018
1 parent 8a30c38 commit dc8c91b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion brawlstars.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: brawlstars
Version: 0.3.0
Version: 0.3.1
Summary: A wrapper, both asynchronous and not, for the Brawl Stars API made by Zihad!
Home-page: https://github.com/umbresp/brawlstars
Author: Umbresp
Expand Down
2 changes: 1 addition & 1 deletion brawlstars/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
__author__ = 'Umbresp'
__title__ = 'brawlstars'
__license__ = 'MIT'
__version__ = '0.3.0'
__version__ = '0.3.1'
__github__ = 'https://www.github.com/umbresp/brawlstars'
2 changes: 1 addition & 1 deletion brawlstars/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def get_player(self, tag):
tag = tag.upper()

try:
resp = self.sesssion.get(self._base_url + 'players/' + tag, headers=self.headers, timeout=self.timeout)
resp = self.session.get(self._base_url + 'players/' + tag, headers=self.headers, timeout=self.timeout)
if resp.status_code == 200:
data = resp.json()
elif 500 > resp.status_code > 400:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='brawlstars',
version='0.3.0',
version='0.3.1',
description='A wrapper, both asynchronous and not, for the Brawl Stars API made by Zihad!',
long_description="I am bad at writing descriptions. TODO",
url='https://github.com/umbresp/brawlstars',
Expand Down

0 comments on commit dc8c91b

Please sign in to comment.