Skip to content

Commit

Permalink
Merge from 5.x: PR #21548
Browse files Browse the repository at this point in the history
Fixes #21546
  • Loading branch information
ccordoba12 committed Nov 24, 2023
2 parents c57d24a + 739457e commit 6e315af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spyder/workers/updates.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def start(self):
error_msg = CONNECT_ERROR_MSG
logger.debug(err, stack_info=True)
except HTTPError as err:
error_msg = HTTP_ERROR_MSG.format(page.status_code)
error_msg = HTTP_ERROR_MSG.format(status_code=page.status_code)
logger.debug(err, stack_info=True)
except Exception as err:
error = traceback.format_exc()
Expand Down

0 comments on commit 6e315af

Please sign in to comment.