We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7dfd54 commit 0ed613aCopy full SHA for 0ed613a
1 file changed
freqtrade/main.py
@@ -63,7 +63,7 @@ def main(sysargv: list[str] | None = None) -> None:
63
64
except KeyboardInterrupt:
65
logger.info("SIGINT received, aborting ...")
66
- return_code = 0
+ return_code = 130
67
except ConfigurationError as e:
68
logger.error(
69
f"Configuration error: {e}\n"
@@ -74,6 +74,7 @@ def main(sysargv: list[str] | None = None) -> None:
74
return_code = 2
75
except Exception:
76
logger.exception("Fatal exception!")
77
+ return_code = 1
78
finally:
79
sys.exit(return_code)
80
0 commit comments