Skip to content

Commit 7575a2b

Browse files
authored
Merge pull request #6 from uc-cdis/chore/compat
chore(compat): py3 compat
2 parents 24fdf0a + 60eed29 commit 7575a2b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cdiserrors/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ def make_json_error(ex):
128128
return response
129129

130130
def setup_default_handlers(app):
131-
for code in default_exceptions.iterkeys():
131+
for code in default_exceptions:
132132
app.register_error_handler(code, make_json_error)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name="cdiserrors",
6-
version='0.1.1',
6+
version='0.1.2',
77
description="The auth system for the gdcapi.",
88
license="Apache",
99
packages=find_packages(),

0 commit comments

Comments
 (0)