Przeglądaj źródła

Merge pull request #20 from scambra/patch-1

Fix for python3
master
Filip Pytloun 5 lat temu
rodzic
commit
04f2396174
Brak konta powiązanego z adresem e-mail autora
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      _modules/iptables_extra.py

+ 1
- 1
_modules/iptables_extra.py Wyświetl plik

@@ -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:])

Ładowanie…
Anuluj
Zapisz