diff options
| author | practicalswift <[email protected]> | 2017-07-09 22:57:02 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2017-08-28 15:18:14 +0200 |
| commit | 25cd520fc429c464846b0f986104db45b3bfaebb (patch) | |
| tree | 3b8055f06c0b70d0cdd2431d2597f6173f3d643d /contrib/devtools/security-check.py | |
| parent | Merge #10303: [bench] Include ms/blk stats in Connect* benchmarks. (diff) | |
| download | discoin-25cd520fc429c464846b0f986104db45b3bfaebb.tar.xz discoin-25cd520fc429c464846b0f986104db45b3bfaebb.zip | |
Use sys.exit(...) instead of exit(...): exit(...) should not be used in programs
Diffstat (limited to 'contrib/devtools/security-check.py')
| -rwxr-xr-x | contrib/devtools/security-check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/security-check.py b/contrib/devtools/security-check.py index c90541e27..6eb566745 100755 --- a/contrib/devtools/security-check.py +++ b/contrib/devtools/security-check.py @@ -212,5 +212,5 @@ if __name__ == '__main__': except IOError: print('%s: cannot open' % filename) retval = 1 - exit(retval) + sys.exit(retval) |