Comment 8 for bug 359440

Revision history for this message
Marc Tardif (cr3) wrote : Re: run crashed with DBusException in call_blocking()

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)