We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ee4314 commit a183ef2Copy full SHA for a183ef2
setup.py
@@ -4,7 +4,7 @@
4
import subprocess
5
6
setup(name="singer-python",
7
- version='3.3.3',
+ version='3.3.4',
8
description="Singer.io utility library",
9
author="Stitch",
10
classifiers=['Programming Language :: Python :: 3 :: Only'],
singer/utils.py
@@ -152,4 +152,4 @@ def backoff(exceptions, giveup):
152
153
154
def exception_is_4xx(exception):
155
- return e.response is not None and 400 <= e.response.status_code < 500
+ return exception.response is not None and 400 <= exception.response.status_code < 500
0 commit comments