Skip to content

Commit 305b738

Browse files
authored
Merge pull request #72 from PurplShip/devfix-request-data-logging
Devfix request data logging
2 parents 27c100e + a8ccc02 commit 305b738

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

purplship/core/utils/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def request(decoder: Callable = decode_bytes, **args) -> str:
4141
4242
make a http request (wrapper around Request method from built in urllib)
4343
"""
44-
logger.debug(f'sending request {jsonify(args)}')
44+
logger.debug(f'sending request')
4545
try:
4646
req = Request(**args)
4747
with urlopen(req) as f:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
]
1414

1515
setup(name='purplship',
16-
version='2020.7.0',
16+
version='2020.7.1',
1717
description='Multi-carrier shipping API integration with python',
1818
long_description=long_description,
1919
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)