Set default-db url in configuration, not arguments

* Fixes a bug in plot_dataframe.py (#1217)
* db_url is eventually overwritten here anyway.
This commit is contained in:
Matthias
2018-09-17 19:57:47 +02:00
parent 14e21765f2
commit 176bae2d59
2 changed files with 4 additions and 2 deletions

View File

@@ -119,7 +119,6 @@ class Arguments(object):
help='Override trades database URL, this is useful if dry_run is enabled'
' or in custom deployments (default: %(default)s)',
dest='db_url',
default=constants.DEFAULT_DB_PROD_URL,
type=str,
metavar='PATH',
)