Skip to content

Commit a183ef2

Browse files
author
John Miller
committed
fix
1 parent 6ee4314 commit a183ef2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import subprocess
55

66
setup(name="singer-python",
7-
version='3.3.3',
7+
version='3.3.4',
88
description="Singer.io utility library",
99
author="Stitch",
1010
classifiers=['Programming Language :: Python :: 3 :: Only'],

singer/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,4 +152,4 @@ def backoff(exceptions, giveup):
152152

153153

154154
def exception_is_4xx(exception):
155-
return e.response is not None and 400 <= e.response.status_code < 500
155+
return exception.response is not None and 400 <= exception.response.status_code < 500

0 commit comments

Comments
 (0)