The problem was introduced in patch 0.5:

    # Rename options
    file = StringIO()
    config.write(file)

The above is obviously not doing anything! So, this needs to be changed
to something sensible like:

    file = open(config_file, "w")
    config.write(file)

-- 
run crashed with DBusException in call_blocking()
https://bugs.launchpad.net/bugs/359440
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to