Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 841481 Details for
Bug 894646
wicd-curses crash on startup
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
patch to fix the issue
wicd-1.7.2.4-curses_bz894646.patch (text/plain), 1.42 KB, created by
Pavel Zhukov
on 2013-12-25 13:03:59 UTC
(
hide
)
Description:
patch to fix the issue
Filename:
MIME Type:
Creator:
Pavel Zhukov
Created:
2013-12-25 13:03:59 UTC
Size:
1.42 KB
patch
obsolete
>diff --git a/curses/curses_misc.py b/curses/curses_misc.py >index a779fa3..99a7db9 100644 >--- a/curses/curses_misc.py >+++ b/curses/curses_misc.py >@@ -314,9 +314,9 @@ class ComboBox(urwid.WidgetWrap): > #Send key to underlying widget: > self._w.keypress(dim, k) > >- #def get_size(self): >- >- def __init__(self,label='',list=[],attrs=('body','editnfc'),focus_attr='focus',use_enter=True,focus=0,callback=None,user_args=None): >+ def __init__(self, label='', list=[], attrs=('body','editnfc'), >+ focus_attr='focus', use_enter=True, focus=0, callback=None, >+ user_args=None): > """ > label : bit of text that preceeds the combobox. If it is "", then > ignore it >@@ -349,7 +349,7 @@ class ComboBox(urwid.WidgetWrap): > # We need this to pick our keypresses > self.use_enter = use_enter > >- self.focus = focus >+ self._focus = focus > > self.callback = callback > self.user_args = user_args >@@ -358,6 +358,19 @@ class ComboBox(urwid.WidgetWrap): > self.parent = None > self.ui = None > self.row = None >+ >+ @property >+ def focus(self): >+ return self._focus >+ >+ @focus.setter >+ def focus(self, index): >+ self._focus = index >+ >+ @focus.deleter >+ def focus(self): >+ del self._focus >+ > def set_list(self,list): > self.list = list >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 894646
: 841481 |
841492