Skip to content

Commit eda34ff

Browse files
authored
Update errors.py
1 parent fde777c commit eda34ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nucleus/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class NucleusAPIError(Exception):
3535
def __init__(
3636
self, endpoint, command, requests_response=None, aiohttp_response=None
3737
):
38-
message = f"Your client is on version {nucleus_client_version}. Before reporting this error, please make sure you update to the latest version of the client by running pip install --upgrade scale-nucleus"
38+
message = f"Your client is on version {nucleus_client_version}. Before reporting this error, please make sure you update to the latest version of the client by running pip install --upgrade scale-nucleus\n"
3939
if requests_response is not None:
4040
message += f"Tried to {command.__name__} {endpoint}, but received {requests_response.status_code}: {requests_response.reason}."
4141
if hasattr(requests_response, "text"):

0 commit comments

Comments
 (0)