/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 commit.py

  • Committer: Jelmer Vernooij
  • Date: 2007-02-03 14:19:44 UTC
  • Revision ID: jelmer@samba.org-20070203141944-oa6iqhetsy0slqo0
Fix references to dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
import bzrlib.errors as errors
30
30
from bzrlib import osutils
31
31
 
32
 
from olive.dialog import error_dialog, question_dialog
 
32
from dialog import error_dialog, question_dialog
33
33
from errors import show_bzr_error
34
34
 
35
35
class CommitDialog(gtk.Dialog):
164
164
        (model, iter) = treeselection.get_selected()
165
165
        
166
166
        if iter is not None:
167
 
            from olive import DiffWindow
 
167
            from diff import DiffWindow
168
168
            
169
169
            _selected = model.get_value(iter, 1)
170
170