1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 08:17:13 +03:00

Fix "" string to be ''

This commit is contained in:
Athanasius 2021-08-28 14:36:54 +01:00
parent 67220fc96a
commit 9e206d092c
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D

View File

@ -964,7 +964,7 @@ class AppWindow(object):
logger.trace_if('capi.worker', 'Answer is not a Failure')
if not isinstance(capi_response, companion.EDMCCAPIResponse):
msg = f"Response was neither CAPIFailedRequest nor EDMCAPIResponse: {type(capi_response)}"
msg = f'Response was neither CAPIFailedRequest nor EDMCAPIResponse: {type(capi_response)}'
logger.error(msg)
raise ValueError(msg)