Skip to content

Commit

Permalink
- fix python 3 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjuma committed Mar 28, 2017
1 parent a200f1f commit 2d5b2d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
5 changes: 0 additions & 5 deletions africastalking/AfricasTalkingGateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,11 +297,6 @@ def sendRequest(self, urlString, data_ = None):
else:
self.responseCode = resp.status_code

print(resp)
print(data_)
print(resp.status_code)
print(urlString)

response = resp.text
if self.Debug:
print("Raw response: " + response)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[metadata]
description-file = README.md
description-file = README.md
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
description='An Official Python library for communicating with the AfricasTalking REST API',
author='Ian Juma',
install_requires=[
'requests'
'requests>=2.11.0'
],
author_email='[email protected]',
url='https://github.com/AfricasTalkingLtd/africastalking-python',
download_url='https://codeload.github.com/AfricasTalkingLtd/africastalking-python/tar.gz/1.6',
download_url='https://codeload.github.com/AfricasTalkingLtd/africastalking-python/tar.gz/1.7',
keywords=['ussd', 'voice', 'sms', 'mpesa', 'payments', 'africastalking'],
classifiers=[],
)

0 comments on commit 2d5b2d8

Please sign in to comment.