Skip to content

Commit

Permalink
Merge pull request #29 from Panchorn/master
Browse files Browse the repository at this point in the history
Fix deprecate encoding arg
  • Loading branch information
Panchorn authored Apr 22, 2021
2 parents f21d992 + 5b53bc2 commit 500a51a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ script:
- make clean docs dist
deploy:
provider: pypi
user: __token__
username: __token__
password:
secure: LnRMKO1yXkg0ad3jPKxVHKThhwoT7H5/wOrytCIcs2l+/WqiJ4qjModrYwjciU9hEtnCwtKKVUWlFGbIHASgihqFeqQruSHgWENPxh1zx0zexD8j/sasqo9eqTX+oHvQzjyr+U1YNBhvLakWbfvFSx4siMrgFWGnoGjjM523b3Ap5X4uZ6N16zWe3uby/7Bz0lcsAvbnqtoVxbAZSMsM+oGIcVTio+dd1etWl5axyybXMNlG52zcZh9BZ/ZotgSPuuGb29W68fL25L/bqytdw8rif0vydMmmTOjjQy1sJ9pDPZwbtJ4fyi6T3zIToML9D/MG7nULHvV1L2rd4hSkNLK/NbKBcitr1Gu69xL6FxvmoJygJzuj/6EQmww8tOSIr2accDhXNobsnS/cP3Bf8YMRwqftBGH5xWqYzd7vT/vv/bcISbRYm4ugnYMO7AfFyZCKNVp5bsNxQ4P9IqzX93EgsBvKdySl1Juo9yiy8F5RvAOgJt2++7JBXkvX32xN3u2BTkGyCQM/lTWwkGJ/s5j0HA/2YNO9mPJNMgO9ZAxxK/zPSNOf44Oi7Gcd7OJhytoV503Uo15HA8RaamOnlve/edup0NzeJMmI/SEkyhEW/yUViLcijYZACHCMydTC5XO71chk0tegcZbJpdEpeSXqCrqfTiaoxieCT6fMeTw=
on:
Expand Down
2 changes: 1 addition & 1 deletion JenkinsLibrary/jenkins_face.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _send(self, req):
@staticmethod
def _get_response(response):
response.raise_for_status()
return json.loads(response.content, encoding='utf-8')
return json.loads(response.content)

def _job_url(self, url_format, params):
url = url_format.format(*params)
Expand Down
2 changes: 1 addition & 1 deletion JenkinsLibrary/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.8.1'
VERSION = '0.8.6'

0 comments on commit 500a51a

Please sign in to comment.