Skip to content

Commit

Permalink
firewall.core.io.ifcfg: Dropped invalid option warning with bad forma…
Browse files Browse the repository at this point in the history
…t string

This fixes RHBZ#1395348
  • Loading branch information
t-woerner committed Nov 30, 2016
1 parent 6014c7c commit 17a9f40
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/firewall/core/io/ifcfg.py
Expand Up @@ -80,7 +80,6 @@ def read(self):
# get key/value pair
pair = [ x.strip() for x in line.split("=", 1) ]
if len(pair) != 2:
log.warning("%s: Invalid option definition: '%s'", self.filename, line.strip())
continue
elif pair[1] == '':
continue
Expand Down

0 comments on commit 17a9f40

Please sign in to comment.