Skip to content

Commit d2c19e1

Browse files
committed
3.8
1 parent e6749d2 commit d2c19e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deepomatic/api/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def __str__(self):
136136
last_request = last_result.request
137137
msg += f"a Response <status_code={last_result.status_code} method={last_request.method.upper()} url={last_request.url}>"
138138
else:
139-
msg += str(last_result)
139+
return super().__str__()
140140
return msg
141141

142142

deploy/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN python setup.py bdist_wheel
1818

1919
# ideally use ROOT_IMAGE but it's not yet doable in dmake
2020
# => manually force root image here
21-
FROM python:3.6 as runtime-py3
21+
FROM python:3.8 as runtime-py3
2222

2323
WORKDIR /app
2424
# don't copy egg there: use universal egg from `build-egg` service at runtime

0 commit comments

Comments
 (0)