diff options
author | Papoteur <papoteur@mageialinux-online.org> | 2016-07-04 09:03:37 +0200 |
---|---|---|
committer | Papoteur <papoteur@mageialinux-online.org> | 2016-07-04 09:03:37 +0200 |
commit | e04b7e22dd52cbb8c6e1d910b55f2927a4c47984 (patch) | |
tree | 23db0dc07b62ce6989118493033e26dcf9e06d55 | |
parent | e5ce10359644790382e58516a4843e6efa95f48b (diff) | |
download | msec-e04b7e22dd52cbb8c6e1d910b55f2927a4c47984.tar msec-e04b7e22dd52cbb8c6e1d910b55f2927a4c47984.tar.gz msec-e04b7e22dd52cbb8c6e1d910b55f2927a4c47984.tar.bz2 msec-e04b7e22dd52cbb8c6e1d910b55f2927a4c47984.tar.xz msec-e04b7e22dd52cbb8c6e1d910b55f2927a4c47984.zip |
Correction unable to add an exception (mga#16574)
-rwxr-xr-x | src/msec/msecgui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py index d468b15..a79668f 100755 --- a/src/msec/msecgui.py +++ b/src/msec/msecgui.py @@ -1442,7 +1442,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: @@ -1457,7 +1457,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) |