Skip to content

Commit

Permalink
Add a missing space in warning log message in _download_node_file() (e…
Browse files Browse the repository at this point in the history
  • Loading branch information
izeye committed Oct 5, 2023
1 parent 441de9c commit eaa9de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodeenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def _download_node_file(node_url, n_attempt=3):
return io.BytesIO(urlopen(node_url).read())
except IncompleteRead as e:
logger.warning(
'Incomplete read while reading'
'Incomplete read while reading '
'from {} - {}'.format(node_url, e)
)
n_attempt -= 1
Expand Down

0 comments on commit eaa9de9

Please sign in to comment.