Read bin/freqtrade with deprecation warning
This commit is contained in:
parent
22144d89fc
commit
9e4dd6f37f
13
bin/freqtrade
Executable file
13
bin/freqtrade
Executable file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import warnings
|
||||
|
||||
from freqtrade.main import main, set_loggers
|
||||
|
||||
set_loggers()
|
||||
|
||||
warnings.warn(
|
||||
"Deprecated - To continue to run the bot like this, please run `pip install -e .` again.",
|
||||
DeprecationWarning)
|
||||
main(sys.argv[1:])
|
Loading…
Reference in New Issue
Block a user