diff options
-rwxr-xr-x | src/msec/msecgui.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py index 27d5505..a005bb3 100755 --- a/src/msec/msecgui.py +++ b/src/msec/msecgui.py @@ -1063,7 +1063,7 @@ class MsecGui: self.toggle_level(level, force=True) def system_security_page(self, id): - """Builds the network security page""" + """Builds the system security page""" vbox = Gtk.VBox(homogeneous=False) entry = Gtk.Label(label=SYSTEM_SECURITY_TEXT) @@ -1093,7 +1093,7 @@ class MsecGui: return vbox def periodic_security_page(self, id): - """Builds the network security page""" + """Builds the periodic security page""" vbox = Gtk.VBox(homogeneous=False) entry = Gtk.Label(label=PERIODIC_SECURITY_TEXT) @@ -1205,7 +1205,7 @@ class MsecGui: return vbox def permissions_security_page(self, id): - """Builds the network security page""" + """Builds the permissions security page""" vbox = Gtk.VBox(homogeneous=False) entry = Gtk.Label(label=PERMISSIONS_SECURITY_TEXT) |