iptables: fix param check in append_csv function

pull/4420/head
Daniel Vigueras 2016-01-18 16:11:13 +01:00 committed by Matt Clay
parent 855bf75709
commit 801e895f62
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ def append_param(rule, param, flag, is_list):
def append_csv(rule, param, flag):
if param is not None:
if param:
rule.extend([flag, ','.join(param)])