Merge lp:~evfool/software-center/fix793896 into lp:software-center

Proposed by Robert Roth
Status: Merged
Merged at revision: 1833
Proposed branch: lp:~evfool/software-center/fix793896
Merge into: lp:software-center
Diff against target: 12 lines (+1/-1)
1 file modified
softwarecenter/enums.py (+1/-1)
To merge this branch: bzr merge lp:~evfool/software-center/fix793896
Reviewer Review Type Date Requested Status
Michael Vogt Approve
Review via email: mp+63694@code.launchpad.net

Description of the change

Fix CustomKeys.CATEGORY AttributeError by renaming KEY_CATEGORY to CATEGORY. (LP: #793896)

To post a comment you must log in.
Revision history for this message
Michael Vogt (mvo) wrote :

Thanks! Fix looks fien.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'softwarecenter/enums.py'
2--- softwarecenter/enums.py 2011-06-06 08:49:12 +0000
3+++ softwarecenter/enums.py 2011-06-07 12:31:43 +0000
4@@ -122,7 +122,7 @@
5 ICON = "Icon"
6 SCREENSHOT_URL = "Screenshot-Url"
7 THUMBNAIL_URL = "Thumbnail-Url"
8- KEY_CATEGORY = "Category"
9+ CATEGORY = "Category"
10
11 # pkg action state constants
12 class PkgStates: