Index: g15jackmon =================================================================== --- g15jackmon (revision 116) +++ g15jackmon (working copy) @@ -18,6 +18,7 @@ # along with this program. If not, see . import sys +sys.path.insert(0, '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3]) # Workaround for Ubuntu import os import time import signal Index: wmjackctl =================================================================== --- wmjackctl (revision 116) +++ wmjackctl (working copy) @@ -18,6 +18,7 @@ # along with this program. If not, see . import sys +sys.path.insert(0, '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3]) # Workaround for Ubuntu import os from wmdocklib import wmoo, pywmhelpers import pyjackctl Index: jacktray =================================================================== --- jacktray (revision 116) +++ jacktray (working copy) @@ -17,6 +17,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# Workaround for Ubuntu +import sys +sys.path.insert(0, '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3]) + import pygtk pygtk.require('2.0') import gtk Index: jacklog =================================================================== --- jacklog (revision 116) +++ jacklog (working copy) @@ -17,6 +17,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +import sys +sys.path.insert(0, '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3]) # Workaround for Ubuntu import pygtk pygtk.require('2.0') import gtk @@ -24,7 +26,6 @@ import pyjackctl from gobject import timeout_add from os import environ, sep, path -import sys # Default configuration jackdbus_log_default = environ['HOME'] + sep + ".log" + sep + "jack" + sep + "jackdbus.log" Index: jackconf =================================================================== --- jackconf (revision 116) +++ jackconf (working copy) @@ -17,6 +17,10 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . +# Workaround for Ubuntu +import sys +sys.path.insert(0, '/usr/lib/python%s/site-packages/oldxml' % sys.version[:3]) + import pygtk pygtk.require('2.0') import gtk