Skip to content

Commit

Permalink
recog_standardize: adjust logic (#302)
Browse files Browse the repository at this point in the history
  • Loading branch information
tsellers-r7 authored Dec 7, 2020
1 parent 418f379 commit b74108d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/recog_standardize
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ARGV.each do |arg|
f.params.each do |k,v|
paramIndex, val = v
next if paramIndex != 0
next if val.index("{") != -1
next if val.index("{") != nil
next if val.strip == ""
case k
when "os.vendor", "service.vendor", "service.component.vendor", "hw.vendor"
Expand Down

0 comments on commit b74108d

Please sign in to comment.