Package: bzr-gtk Version: 0.96.2-1 Severity: normal Tags: patch -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
One cannot use the "Commit" menu entry due to a wrong import of the commit dialog. The patch attached fixes this. - -- System Information: Debian Release: squeeze/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental') Architecture: i386 (x86_64) Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL set to de_DE.UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages bzr-gtk depends on: ii bzr 1.17-1 easy to use distributed version co ii python 2.5.4-2 An interactive high-level object-o ii python-central 0.6.11 register and build utility for Pyt ii python-glade2 2.16.0-1 GTK+ bindings: Glade support ii python-gtk2 2.16.0-1 Python bindings for the GTK+ widge ii python-notify 0.1.1-2+b1 Python bindings for libnotify Versions of packages bzr-gtk recommends: pn bzr-dbus <none> (no description available) ii python-cairo 1.8.6-1 Python bindings for the Cairo vect pn python-gnome2-desktop <none> (no description available) pn python-gnomekeyring <none> (no description available) pn python-gtksourceview2 <none> (no description available) pn python-nautilus <none> (no description available) pn seahorse <none> (no description available) Versions of packages bzr-gtk suggests: pn bzr-avahi <none> (no description available) pn bzr-loom <none> (no description available) pn bzr-search <none> (no description available) - -- no debconf information -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iEYEARECAAYFAkqmtY8ACgkQYfUFJ3ewsJgp3ACeJPaszyvtD/C8lWsBpI0iXC9g U4wAoJ1++GVAFm5vABGE76CqSmT1B2Qd =L/PE -----END PGP SIGNATURE-----
--- olive/menu.py 2009-07-09 22:01:29.000000000 +0200 +++ olive/menu.py.new 2009-09-08 21:47:33.000000000 +0200 @@ -282,7 +282,7 @@ def commit(self, action): """ Right context menu -> Commit """ - from commit import CommitDialog + from bzrlib.plugins.gtk.commit import CommitDialog branch = None try: wt, path = WorkingTree.open_containing(self.path)