fix display of firmware in details panel

This commit is contained in:
Daniel Pavel 2013-06-19 17:03:16 +02:00
parent b4bca4670b
commit dffe6f8b91
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ def _update_details(button):
yield ('Serial', device.serial)
for fw in device.firmware:
for fw in list(device.firmware):
yield (fw.kind, (fw.name + ' ' + fw.version).strip())
flag_bits = device.status.get(_NOTFITICATIONS)