Skip to content

Commit

Permalink
Include instance name in the instance not found error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackenmen committed Jul 23, 2023
1 parent ba210bd commit a9b13d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redbot/core/data_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def load_basic_configuration(instance_name_: str):
basic_config = config[_instance_name]
except KeyError:
print(
"Instance with this name doesn't exist."
f"Instance with name '{_instance_name}' doesn't exist."
" You can create new instance using `redbot-setup` prior to running the bot."
)
sys.exit(ExitCodes.INVALID_CLI_USAGE)
Expand Down

0 comments on commit a9b13d5

Please sign in to comment.