Skip to content

Commit

Permalink
Fix wrong progress steps with small images
Browse files Browse the repository at this point in the history
  • Loading branch information
SARL ENR-68 committed Oct 20, 2014
1 parent 96eb4e2 commit 8eb9d7b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/isodumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,9 @@ def raw_write(self, source, target, b):
indice=1
written=0
ncuts=b/bs
while ncuts <= 100:
bs=bs/2
ncuts=b/bs
for i in xrange(0,ncuts):
try:
buf=ifc.read(bs)
Expand Down

0 comments on commit 8eb9d7b

Please sign in to comment.