Skip to content

Commit

Permalink
Merge pull request #61 from cligu/dev
Browse files Browse the repository at this point in the history
validation bug fix
  • Loading branch information
amir-zeldes committed May 2, 2018
2 parents d716f81 + fedfe24 commit d5351d0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/validate_spreadsheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,12 +318,12 @@ def apply_rule(rule, parsed_ether, meta):
if boundary in name_filled:
cells.append(arg_letter + boundary)

elif domain == "meta":
meta_report, meta_extra = apply_meta_rule(rule, meta)
report += meta_report
extra += meta_extra
elif domain == "meta":
meta_report, meta_extra = apply_meta_rule(rule, meta)
report += meta_report
extra += meta_extra

return report, extra, cells
return report, extra, cells


def apply_meta_rule(rule, meta):
Expand Down

0 comments on commit d5351d0

Please sign in to comment.