Mageia Bugzilla – Attachment 6923 Details for
Bug 16574
msec: unable to add an exception (TypeError: pack_start() takes exactly 5 arguments (2 given))
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
New Account
|
Forgot Password
[patch]
Syntax corrections
0001-Correction-bug-16574-unable-to-add-an-exception.patch (text/plain), 1.12 KB, created by
papoteur
on 2015-08-12 23:11:41 CEST
(
hide
)
Description:
Syntax corrections
Filename:
MIME Type:
Creator:
papoteur
Created:
2015-08-12 23:11:41 CEST
Size:
1.12 KB
patch
obsolete
>From b0702ec333ee64667f51a4fe6b732cdbab07c96d Mon Sep 17 00:00:00 2001 >From: Papoteur <papoteur@mageialinux-online.org> >Date: Wed, 12 Aug 2015 23:00:24 +0200 >Subject: [PATCH] Correction bug 16574 unable to add an exception > >--- > src/msec/msecgui.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py >index 198b536..a7938f5 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) >-- >2.3.8 >
From b0702ec333ee64667f51a4fe6b732cdbab07c96d Mon Sep 17 00:00:00 2001 From: Papoteur <papoteur@mageialinux-online.org> Date: Wed, 12 Aug 2015 23:00:24 +0200 Subject: [PATCH] Correction bug 16574 unable to add an exception --- src/msec/msecgui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msec/msecgui.py b/src/msec/msecgui.py index 198b536..a7938f5 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) -- 2.3.8
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 16574
: 6923