~gary-lasker/software-center/replace-restfulclient-with-piston-tweaks

« back to all changes in this revision

Viewing changes to softwarecenter/ui/gtk3/panes/historypane.py

  • Committer: Michael Vogt
  • Date: 2012-01-03 13:23:59 UTC
  • mfrom: (2617.1.1 tweaks)
  • Revision ID: michael.vogt@ubuntu.com-20120103132359-tozzogs3pmzzjn6z
* softwarecenter/ui/gtk3/panes/historypane.py:
  - change COL_PKG to an object rather than a str (LP: #905762)

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    }
44
44
 
45
45
    (COL_WHEN, COL_ACTION, COL_PKG) = range(3)
46
 
    COL_TYPES = (object, int, str)
 
46
    COL_TYPES = (object, int, object)
47
47
 
48
48
    (ALL, INSTALLED, REMOVED, UPGRADED) = range(4)
49
49