diff mbox

[1/4] python/sepolgen: fix typo in PathChoooser name

Message ID 20180603162541.28136-1-nicolas.iooss@m4x.org (mailing list archive)
State Not Applicable
Headers show

Commit Message

Nicolas Iooss June 3, 2018, 4:25 p.m. UTC
Signed-off-by: Nicolas Iooss <nicolas.iooss@m4x.org>
---
 python/sepolgen/src/sepolgen/defaults.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/python/sepolgen/src/sepolgen/defaults.py b/python/sepolgen/src/sepolgen/defaults.py
index 9591063989ad..199acfafe4cf 100644
--- a/python/sepolgen/src/sepolgen/defaults.py
+++ b/python/sepolgen/src/sepolgen/defaults.py
@@ -22,7 +22,7 @@  import re
 
 # Select the correct location for the development files based on a
 # path variable (optionally read from a configuration file)
-class PathChoooser(object):
+class PathChooser(object):
     def __init__(self, pathname):
         self.config = dict()
         if not os.path.exists(pathname):
@@ -68,10 +68,10 @@  def attribute_info():
     return data_dir() + "/attribute_info"
 
 def refpolicy_makefile():
-    chooser = PathChoooser("/etc/selinux/sepolgen.conf")
+    chooser = PathChooser("/etc/selinux/sepolgen.conf")
     return chooser("Makefile")
 
 def headers():
-    chooser = PathChoooser("/etc/selinux/sepolgen.conf")
+    chooser = PathChooser("/etc/selinux/sepolgen.conf")
     return chooser("include")