/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: 2008-03-14 02:13:27 UTC
  • mto: (452.2.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 453.
  • Revision ID: jelmer@samba.org-20080314021327-q1pabtpneeasz8qv
Fix support for default value in BranchSelectionDialog.

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: