/b-gtk/fix-viz

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/b-gtk/fix-viz

« back to all changes in this revision

Viewing changes to preferences.py

  • Committer: Jelmer Vernooij
  • Date: 2007-10-02 21:48:19 UTC
  • mfrom: (291.1.1 jelmer)
  • Revision ID: jelmer@samba.org-20071002214819-3gihge149hi7ifd5
Merge my preferences fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
        table.set_col_spacings(6)
120
120
 
121
121
        def row_selected(tv, path, tvc):
122
 
            p = bzrlib.plugin.all_plugins()[model[path][0]]
 
122
            p = bzrlib.plugin.plugins()[model[path][0]]
123
123
            from inspect import getdoc
124
124
 
125
125
            for w in table.get_children():
184
184
        treeview.append_column(column)
185
185
        
186
186
        import bzrlib.plugin
187
 
        plugins = bzrlib.plugin.all_plugins()
 
187
        plugins = bzrlib.plugin.plugins()
188
188
        plugin_names = plugins.keys()
189
189
        plugin_names.sort()
190
190
        for name in plugin_names: