소스 검색

Merge pull request #20 from scambra/patch-1

Fix for python3
master
Filip Pytloun 5 년 전
부모
커밋
04f2396174
No account linked to committer's email address
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…
취소
저장