Merge pull request #1896 from hroff-1902/fix-help-traceback

fix handling of SystemExit
This commit is contained in:
Matthias 2019-05-30 20:14:08 +02:00 committed by GitHub
commit f15f03428e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ if sys.version_info < (3, 6):
# flake8: noqa E402
import logging
from argparse import Namespace
from typing import List
from typing import Any, List
from freqtrade import OperationalException
from freqtrade.arguments import Arguments
@ -29,12 +29,11 @@ def main(sysargv: List[str] = None) -> None:
:return: None
"""
return_code: Any = 1
worker = None
try:
set_loggers()
worker = None
return_code = 1
arguments = Arguments(
sysargv,
'Free, open source crypto trading bot'
@ -52,13 +51,15 @@ def main(sysargv: List[str] = None) -> None:
worker = Worker(args)
worker.run()
except SystemExit as e:
return_code = e
except KeyboardInterrupt:
logger.info('SIGINT received, aborting ...')
return_code = 0
except OperationalException as e:
logger.error(str(e))
return_code = 2
except BaseException:
except Exception:
logger.exception('Fatal exception!')
finally:
if worker: