diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/generate_firewall_rule-resequence.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/op_mode/generate_firewall_rule-resequence.py b/src/op_mode/generate_firewall_rule-resequence.py index 4362b484a..eb82a1a0a 100755 --- a/src/op_mode/generate_firewall_rule-resequence.py +++ b/src/op_mode/generate_firewall_rule-resequence.py @@ -120,13 +120,13 @@ if __name__ == "__main__": # Remove global-options, group and flowtable as they don't need sequencing if 'global-options' in config_dict['firewall']: - del config_dict['firewall']['global-options'] + del config_dict['firewall']['global-options'] if 'group' in config_dict['firewall']: - del config_dict['firewall']['group'] + del config_dict['firewall']['group'] if 'flowtable' in config_dict['firewall']: - del config_dict['firewall']['flowtable'] + del config_dict['firewall']['flowtable'] # Convert rule keys to integers, rule "10" -> rule 10 # This is necessary for sorting the rules |