aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/isodumper.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py
index 20c427b..9191931 100644
--- a/lib/isodumper.py
+++ b/lib/isodumper.py
@@ -184,6 +184,7 @@ class IsoDumper(object):
self.devicelist.addItem("",False)
if len(self.list)>0:
for name, path, size in self.list:
+ if size != 0 :
# convert in Mbytes
sizeM=str(int(size)/(1024*1024))
self.devicelist.addItem(str(name+' ('+path.lstrip()+') '+sizeM+_('Mb')),False)