瀏覽代碼

Fix for python3

get_tables was failing with python3, because readline() returns bytes, which is always distinct to '', but then it failed with IndexError for empty lines. Also, line[0] was returning 42 instead of '*', so no table would be returned.

I have tested with python2 too, and decode() can be called there, it will return unicode type, and comparing with '' and '*' works
pull/20/head
Sergio Cambra 5 年之前
父節點
當前提交
5340a4e577
No account linked to committer's email address
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      _modules/iptables_extra.py

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

try: try:
tables_list = Popen(cmd, shell=True, stdout=PIPE) tables_list = Popen(cmd, shell=True, stdout=PIPE)
while True: while True:
line = tables_list.stdout.readline()
line = tables_list.stdout.readline().decode()
if line != '': if line != '':
if line[0] == "*": if line[0] == "*":
tables.append(line.rstrip()[1:]) tables.append(line.rstrip()[1:])

Loading…
取消
儲存