Skip to content
This repository has been archived by the owner on Jul 13, 2019. It is now read-only.

Commit

Permalink
no error return on --help, run once in travis
Browse files Browse the repository at this point in the history
  • Loading branch information
tkruse committed Apr 24, 2016
1 parent a7c23c5 commit 948350f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ install:
script:
- python cpplint_unittest.py
- pyflakes cpplint.py
- pyflakes cpplint_unittest.py
- pyflakes cpplint_unittest.py
- python cpplint.py --help
2 changes: 1 addition & 1 deletion cpplint.py
Original file line number Diff line number Diff line change
Expand Up @@ -6253,7 +6253,7 @@ def PrintUsage(message):
if message:
sys.exit('\nFATAL ERROR: ' + message)
else:
sys.exit(1)
sys.exit(0)


def PrintCategories():
Expand Down

0 comments on commit 948350f

Please sign in to comment.