/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: Gary van der Merwe
  • Date: 2007-08-12 16:12:33 UTC
  • mto: (256.2.37 gtk)
  • mto: This revision was merged to the branch mainline in revision 262.
  • Revision ID: garyvdm@gmail.com-20070812161233-yhv1vafcxtsvpugj
Fix for bug Bug #132017 : olive no longer able to find bzrlib location.

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.plugins()[model[path][0]]
 
122
            p = bzrlib.plugin.all_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.plugins()
 
187
        plugins = bzrlib.plugin.all_plugins()
188
188
        plugin_names = plugins.keys()
189
189
        plugin_names.sort()
190
190
        for name in plugin_names: