瀏覽代碼

Merge pull request #20 from scambra/patch-1

Fix for python3
master
Filip Pytloun 5 年之前
父節點
當前提交
04f2396174
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      _modules/iptables_extra.py

+ 1
- 1
_modules/iptables_extra.py 查看文件

@@ -22,7 +22,7 @@ def get_tables(family="ipv4"):
try:
tables_list = Popen(cmd, shell=True, stdout=PIPE)
while True:
line = tables_list.stdout.readline()
line = tables_list.stdout.readline().decode()
if line != '':
if line[0] == "*":
tables.append(line.rstrip()[1:])

Loading…
取消
儲存