Browse Source

Fixed failing test

pull/172/head
Michael Olund 5 years ago
parent
commit
6b07708c28
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      edivorce/apps/core/utils/efiling_submission.py

+ 1
- 1
edivorce/apps/core/utils/efiling_submission.py View File

@ -176,6 +176,6 @@ class EFilingSubmission:
return None, f"{response['error']} - {response['message']}"
if response.status_code == 401:
return None, '401 - ' + response.headers.get('WWW-Authenticate', '')
return None, '401 - ' + str(response.headers.get('WWW-Authenticate', ''))
return None, f'{response.status_code} - {response.text}'

Loading…
Cancel
Save