Fix last occurence of data_location

This commit is contained in:
Matthias
2020-02-12 19:58:23 +01:00
parent d6b9397579
commit 483cba453a
2 changed files with 2 additions and 2 deletions

View File

@@ -34,7 +34,7 @@ candles = load_pair_history(datadir=config["datadir"],
pair=pair)
# Confirm success
print("Loaded " + str(len(candles)) + f" rows of data for {pair} from {data_location}")
print("Loaded " + str(len(candles)) + f" rows of data for {pair} from {config['datadir']}")
candles.head()
```