Skip to content

Commit

Permalink
Address PR Review
Browse files Browse the repository at this point in the history
  • Loading branch information
xmatthias committed Feb 9, 2020
1 parent 34f0466 commit b536d50
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions freqtrade/commands/build_config_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def start_new_config(args: Dict[str, Any]) -> None:
config_path.unlink()
else:
raise OperationalException(
f"Configuration `{config_path}` already exists. "
"Please use another configuration name or delete the existing configuration.")
f"Configuration file `{config_path}` already exists. "
"Please delete it or use a different configuration file name.")
selections = ask_user_config()
deploy_new_config(config_path, selections)
2 changes: 1 addition & 1 deletion freqtrade/templates/base_config.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"bids_to_ask_delta": 1
}
},
"ask_strategy":{
"ask_strategy": {
"use_order_book": false,
"order_book_min": 1,
"order_book_max": 9,
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ function config_generator() {
function config() {

echo "-------------------------"
echo "Please use freqtrade new-config -c config.json to generate a new configuration file."
echo "Please use 'freqtrade new-config -c config.json' to generate a new configuration file."
echo "-------------------------"
}

Expand Down

0 comments on commit b536d50

Please sign in to comment.