Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
eamonnfaherty committed Jun 25, 2021
1 parent 8118e81 commit 062c913
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion betterboto/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,14 @@
def slurp(
name, func, response_to_concat,
next_token_name_in_response='NextPageToken', next_token_name_in_request='PageToken',
wait_between_pages=0, logging_prefix="",
wait_between_pages=0,
**kwargs
):
logging_prefix = ''
if kwargs.get('logging_prefix'):
logging_prefix = kwargs.get('logging_prefix')
del kwargs['logging_prefix']

logger.info("{}{}: {}".format(logging_prefix, name, kwargs))
all_responses = []
while True:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setuptools.setup(
name="better-boto",
version="0.41.0",
version="0.41.1",
author="Eamonn Faherty",
author_email="python-packages@designandsolve.co.uk",
description="Helpers to make using boto3 more enjoyable",
Expand Down

0 comments on commit 062c913

Please sign in to comment.