Skip to content

Commit

Permalink
update python version compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
somethingmorerelevant committed Sep 22, 2023
1 parent bb34888 commit ec1151a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:stitch-tap-tester
- image: 218546966473.dkr.ecr.us-east-1.amazonaws.com/circle-ci:tap-tester
steps:
- checkout
- run:
Expand Down
2 changes: 1 addition & 1 deletion tap_marketo/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self, endpoint, client_id, client_secret,
if self.max_daily_calls <= 1:
raise ValueError("Limit Cannot be Negative or Zero")
except (ValueError, TypeError) as err:
singer.log_critical(f"Invalid Value passed for max_daily_calls: {max_daily_calls}")
singer.log_critical("Invalid Value passed for max_daily_calls: %s", max_daily_calls)
raise err

self.user_agent = user_agent
Expand Down

0 comments on commit ec1151a

Please sign in to comment.