Revert "[include-fixer] Don't throw exception when parsing unknown arguments in vim script."

This reverts commit r302934. It's wrong, edits the wrong file and was
committed without review.

llvm-svn: 303242
This commit is contained in:
Benjamin Kramer 2017-05-17 09:24:28 +00:00
parent 5914f37a7f
commit f044405351
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ def main():
help='path used to read a compilation database.')
parser.add_argument('-saving-path', default='./find_all_symbols_db.yaml',
help='result saving path')
args, _ = parser.parse_known_args()
args = parser.parse_args()
db_path = 'compile_commands.json'