Hi Dmitry,
I have built and tested the package after your fixes and the editor issue is resolved. I found a minor glitch in create new server instance wizard - it seems that the python-pexpect dependancy was missing. I have attached a patch fixing this according to guidelines in your other e-mail. Regards, Mateusz.
From 8ab006629f8d1b140f6e8d8b789d845c711a6fcd Mon Sep 17 00:00:00 2001 From: Mateusz Kijowski <mateusz.kijow...@gmail.com> Date: Sat, 3 Mar 2012 12:43:13 +0100 Subject: [PATCH] d-control: added python-pexpect dependancy pexpect module is required by create new server instance wizard --- debian/control | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/debian/control b/debian/control index dbb92c9..bf97494 100644 --- a/debian/control +++ b/debian/control @@ -35,7 +35,7 @@ Package: mysql-workbench Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, mysql-workbench-data (= ${source:Version}), - python-paramiko, python-pysqlite2, python-all, mysql-client + python-paramiko, python-pysqlite2, python-all, mysql-client, python-pexpect Recommends: ttf-bitstream-vera Suggests: gnome-keyring Description: MySQL Workbench - a visual database modeling, administration and queuing tool -- 1.7.9.1