Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 221391 Details for
Bug 307037
porthole-0.6.1 Summary view not showing most of the info
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
fixes the KeyError due to an installed ebuild being removed from the tree.
porthole-0.6.1-masking_status.patch (text/plain), 485 bytes, created by
Brian Dolbec (RETIRED)
on 2010-02-27 05:14:55 UTC
(
hide
)
Description:
fixes the KeyError due to an installed ebuild being removed from the tree.
Filename:
MIME Type:
Creator:
Brian Dolbec (RETIRED)
Created:
2010-02-27 05:14:55 UTC
Size:
485 bytes
patch
obsolete
>Index: porthole/backends/portagelib.py >=================================================================== >--- porthole/backends/portagelib.py (revision 1209) >+++ porthole/backends/portagelib.py (working copy) >@@ -452,7 +452,11 @@ > > > def get_masking_status(ebuild): >- return portage.getmaskingstatus(ebuild) >+ try: >+ status = portage.getmaskingstatus(ebuild) >+ except KeyError: >+ status = ['deprecated'] >+ return status > > > def get_masking_reason(ebuild):
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 307037
: 221391 |
221393