aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageialinux-online.org>2016-07-12 22:42:00 +0200
committerPapoteur <papoteur@mageialinux-online.org>2016-07-12 22:42:00 +0200
commit6ccd9019ef1364ee3de83a1a1f05d5d4ed72a6c5 (patch)
tree99a0299a9ed8073ef62c7a4f0f93c3fb22e6cd98
parent3a1e06f10c07654cb74f2f28203363c31284744f (diff)
downloadisodumper-6ccd9019ef1364ee3de83a1a1f05d5d4ed72a6c5.tar
isodumper-6ccd9019ef1364ee3de83a1a1f05d5d4ed72a6c5.tar.gz
isodumper-6ccd9019ef1364ee3de83a1a1f05d5d4ed72a6c5.tar.bz2
isodumper-6ccd9019ef1364ee3de83a1a1f05d5d4ed72a6c5.tar.xz
isodumper-6ccd9019ef1364ee3de83a1a1f05d5d4ed72a6c5.zip
Correction of writing tiny images (mga#18411)topic/yui
-rwxr-xr-x[-rw-r--r--]lib/isodumper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/isodumper.py b/lib/isodumper.py
index 5f8da3a..c62089b 100644..100755
--- a/lib/isodumper.py
+++ b/lib/isodumper.py
@@ -415,7 +415,7 @@ class IsoDumper(object):
while ncuts <= 100:
bs=int(bs/2)
ncuts=int(b/bs)
- for i in range(0,ncuts+1):
+ for i in range(0,int(ncuts)+1):
try:
buf=ifc.read(bs)
except: