rfmoz / tuptime

Report historical and statistical real time of the system, keeping it between restarts. Like uptime command but with more interesting output.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Replace sys.exit(-1) by sys.exit(1)

lcheylus opened this issue · comments

In tuptime Python code, sys.exit(-1) is used for error code. Generally, we use 1 for error code in this case => sys.exit(1).

Appreciate that you look into this, it's fixed on dev branch.

After review of your last commits in master branch, it's OK : every sys.exit uses 1 for error code.