Comment 21 for bug 722019

Revision history for this message
mk (mk.pmb) wrote :

Patched /usr/share/pyshared/usbcreator/install.py to show details:
| @@ -241,3 +241,3 @@
| except dbus.DBusException as dbus_err:
| - self._failure(message)
| + self._failure(message + ':\n' + repr(dbus_err))
| self.progress_pulse_stop()

New error message, whitespace adjusted for readability:

> Failed to install the bootloader.:
> DBusException('Traceback (most recent call last):\n
> File "/usr/lib/python2.7/dist-packages/dbus/service.py", line 707,
> in _message_cb\n
> retval = candidate_method(self, *args, **keywords)\n
> File "/usr/share/usb-creator/usb-creator-helper", line 188,
> in InstallBootloader\n
> target_mounts = obj.get_filesystem().get_cached_property(
> \'MountPoints\').get_bytestring_array()\n
> NameError: global name \'obj\' is not defined\n',)

Hope this helps.