Fix Travis failure 'is not' to !=

This commit is contained in:
Wendel Voigt 2019-02-16 12:00:49 -06:00 committed by GitHub
parent 736154f805
commit 8a975bc58b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -408,7 +408,7 @@ def main(args):
else:
if lang != LANGUAGE_DEFAULT:
for x in lang_default[s]:
if x not in lang_set_data[s] and x is not 'used':
if x not in lang_set_data[s] and x != 'used':
lang_set_data[s][x] = lang_default[s][x]
lang_out.write(json_dict_entry({s: lang_set_data[s]}, sep))