Comment 0 for bug 67930

Revision history for this message
Alexander Belchenko (bialix) wrote :

Current bzr-gtk version gas hardwired assumption about name of plugin. When command 'gdiff' invoked it tries to import from module:

from bzrlib.plugins.gtk.viz.diffwin import DiffWindow

I.e. it require to have bzr-gtk plugin only with name 'gtk'. Another names make this import impossible and cause error.

But all other commands use relative imports and don't have this problem. Suggested fix to change import to relative form:

from viz.diffwin import DiffWindow