Merge pull request #1893 from kernc/fix-1891

Don't fail if --fatal not provided
This commit is contained in:
Justin Mayer 2016-02-19 11:32:19 -08:00
commit 985840178a

View file

@ -323,7 +323,7 @@ def parse_arguments():
help='Comma separated list of selected paths to write')
parser.add_argument('--fatal', metavar='errors|warnings',
choices=('errors', 'warnings'),
choices=('errors', 'warnings'), default='',
help=('Exit the program with non-zero status if any '
'errors/warnings encountered.'))