mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Updated error message
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
94d6759bc4
commit
9de0813d56
1 changed files with 1 additions and 1 deletions
|
@ -853,7 +853,7 @@ def main() -> None:
|
||||||
except KeyError:
|
except KeyError:
|
||||||
logging.error("Exception occurred", exc_info=True)
|
logging.error("Exception occurred", exc_info=True)
|
||||||
error = Errors()
|
error = Errors()
|
||||||
error.raise_error_message(message='Something went wrong, look in the log file.', exit_status=1)
|
error.raise_error_message(message='Something went wrong, check the log file.', exit_status=1)
|
||||||
except IndexError:
|
except IndexError:
|
||||||
usage.help_short(1)
|
usage.help_short(1)
|
||||||
except KeyboardInterrupt as e:
|
except KeyboardInterrupt as e:
|
||||||
|
|
Loading…
Reference in a new issue