Catch error when done reading files

This commit is contained in:
Suhas Daftuar 2014-09-11 09:22:39 -04:00
parent df623d83da
commit 07d5287f42
1 changed files with 5 additions and 1 deletions

View File

@ -110,7 +110,11 @@ def copydata(settings, blkindex, blkset):
if not inF:
fname = "%s/blk%05d.dat" % (settings['input'], inFn)
print("Input file" + fname)
inF = open(fname, "rb")
try:
inF = open(fname, "rb")
except IOError:
print "Done"
return
inhdr = inF.read(8)
if (not inhdr or (inhdr[0] == "\0")):