Merge "Fix typo in error message in tools/fs_config/fs_config_generator.py."

This commit is contained in:
Treehugger Robot 2019-08-07 21:35:33 +00:00 committed by Gerrit Code Review
commit c5cb45b7da
1 changed files with 1 additions and 1 deletions

View File

@ -1037,7 +1037,7 @@ class FSConfigGen(BaseGenerator):
caps_split = caps.split(',')
for cap in caps_split:
if cap not in caps_dict:
sys.exit('Unkonwn cap "%s" found!' % cap)
sys.exit('Unknown cap "%s" found!' % cap)
caps_value += 1 << caps_dict[cap]
path_length_with_null = len(path) + 1