/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 olive/log.py

  • Committer: Szilveszter Farkas (Phanatic)
  • Date: 2006-09-25 01:58:44 UTC
  • mto: (0.14.1 main)
  • mto: This revision was merged to the branch mainline in revision 83.
  • Revision ID: Szilveszter.Farkas@gmail.com-20060925015844-12e9eec2d5f41420
Huge cleanup after removing backend codebase.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
from bzrlib.branch import Branch
33
33
import bzrlib.errors as errors
34
34
 
35
 
from viz.bzrkapp import BzrkApp
 
35
try:
 
36
    from bzrlib.plugins.gtk.viz.bzrkapp import BzrkApp
 
37
except ImportError:
 
38
    print "bzr-gtk visualize plugin not available."
 
39
    sys.exit(1)
36
40
 
37
41
class OliveLog:
38
42
    """ Display Log (bzrk) window and perform the needed actions. """
64
68
                                     _('You can perform this action only in a branch.'))
65
69
        else:
66
70
            self.app = BzrkApp()
67
 
            self.app.show(self.branch, self.revid, None)
 
71
            self.app.show(self.branch, self.revid, None, False)