33 lines
1.3 KiB
Diff
33 lines
1.3 KiB
Diff
|
|
From 8fac024785299725b714ad6ac8a265e16bc125c9 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Nicolas Iooss <nicolas.iooss@m4x.org>
|
||
|
|
Date: Sat, 4 Aug 2018 14:07:47 +0200
|
||
|
|
Subject: [PATCH 042/170] python/sepolicy: fix "procotol" misspelling
|
||
|
|
|
||
|
|
procotol -> protocol
|
||
|
|
|
||
|
|
This issue has been found using flake8. This Python linter reported:
|
||
|
|
|
||
|
|
python/sepolicy/sepolicy/gui.py:2525:132: F821 undefined name 'procotol'
|
||
|
|
|
||
|
|
Signed-off-by: Nicolas Iooss <nicolas.iooss@m4x.org>
|
||
|
|
---
|
||
|
|
python/sepolicy/sepolicy/gui.py | 2 +-
|
||
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
|
||
|
|
diff --git a/python/sepolicy/sepolicy/gui.py b/python/sepolicy/sepolicy/gui.py
|
||
|
|
index 16f24a0a..6933f6a1 100644
|
||
|
|
--- a/selinux-python-2.8/sepolicy/sepolicy/gui.py
|
||
|
|
+++ b/selinux-python-2.8/sepolicy/sepolicy/gui.py
|
||
|
|
@@ -2522,7 +2522,7 @@ class SELinuxGui():
|
||
|
|
if self.cur_dict[k][(port, protocol)]["action"] == "-d":
|
||
|
|
update_buffer += "port -d -p %s %s\n" % (protocol, port)
|
||
|
|
else:
|
||
|
|
- update_buffer += "port %s -t %s -p %s %s\n" % (self.cur_dict[k][f]["action"], self.cur_dict[k][f]["type"], procotol, port)
|
||
|
|
+ update_buffer += "port %s -t %s -p %s %s\n" % (self.cur_dict[k][f]["action"], self.cur_dict[k][f]["type"], protocol, port)
|
||
|
|
|
||
|
|
return update_buffer
|
||
|
|
|
||
|
|
--
|
||
|
|
2.19.1
|
||
|
|
|