Skip to content

Commit e43c406

Browse files
committed
Modify the variable name
1 parent 13899eb commit e43c406

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

zoomeye/data.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -736,11 +736,11 @@ def filter_information(self, filters):
736736
result_data, has_equal, not_equal = process_filter(filters, info_data, fields_ip)
737737
if len(result_data) == 0:
738738
return
739-
for item in not_equal:
740-
if fields_ip.get(item.strip()) is None:
739+
for items in not_equal:
740+
if fields_ip.get(items.strip()) is None:
741741
support_fields = ','.join(list(fields_ip.keys()))
742742
show.printf(
743-
"filter command has unsupport fields [{}], support fields has [{}]".format(item, support_fields),
743+
"filter command has unsupport fields [{}], support fields has [{}]".format(items, support_fields),
744744
color='red')
745745
exit(0)
746746
show.print_info_filter(not_equal, result_data, has_equal)

0 commit comments

Comments
 (0)