Skip to content

Commit d805646

Browse files
kavehshahediMatthewKhouzam
authored andcommitted
GenericResponse status message assignment fix #77
1 parent cb137c9 commit d805646

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tsp/response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,6 @@ def __init__(self, params, model_type):
108108

109109
# Message associated with the response
110110
if STATUS_MESSAGE_KEY in params:
111-
self.status = params.get(STATUS_MESSAGE_KEY)
111+
self.status_text = params.get(STATUS_MESSAGE_KEY)
112112
else: # pragma: no cover
113-
self.status = ""
113+
self.status_text = ""

0 commit comments

Comments
 (0)