aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSARL ENR 68 <david@david.david>2015-08-28 20:26:24 +0200
committerSARL ENR 68 <david@david.david>2015-08-28 20:26:24 +0200
commit12b1f5d8b2ecdb1a5d4b99a03e0a119f3228c45f (patch)
treeeabbdcccc8716c81f4e342efd73507e3444d9493
parentda3c537d80fa90c27a3ff9f2c80082a51d1dbd2c (diff)
downloadmsec-12b1f5d8b2ecdb1a5d4b99a03e0a119f3228c45f.tar
msec-12b1f5d8b2ecdb1a5d4b99a03e0a119f3228c45f.tar.gz
msec-12b1f5d8b2ecdb1a5d4b99a03e0a119f3228c45f.tar.bz2
msec-12b1f5d8b2ecdb1a5d4b99a03e0a119f3228c45f.tar.xz
msec-12b1f5d8b2ecdb1a5d4b99a03e0a119f3228c45f.zip
Correction bug 16574 unable to add an exception (mga#16574)
- by papoteur: https://bugs.mageia.org/attachment.cgi?id=6923
-rwxr-xr-xsrc/msec/msecgui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py
index d6b4203..1dfab59 100755
--- a/src/msec/msecgui.py
+++ b/src/msec/msecgui.py
@@ -1440,7 +1440,7 @@ class MsecGui:
# module
hbox = Gtk.HBox()
- hbox.pack_start(Gtk.Label(_("Check: "), True, True, 0))
+ hbox.pack_start(Gtk.Label(_("Check: ")), True, True, 0)
entry_module = Gtk.ComboBoxText()
pos = 0
for item in config.CHECKS_WITH_EXCEPTIONS:
@@ -1455,7 +1455,7 @@ class MsecGui:
# exception
hbox = Gtk.HBox()
- hbox.pack_start(Gtk.Label(_("Exception: "), True, True, 0))
+ hbox.pack_start(Gtk.Label(_("Exception: ")), True, True, 0)
entry_exception = Gtk.Entry()
entry_exception.set_text(exception)
hbox.pack_start(entry_exception, True, True, 0)