Close the file when done with it.

This commit is contained in:
Baohua Yang
2013-12-16 10:31:51 +08:00
committed by Baohua Yang
parent a6a0cb4331
commit 8bb830824b
+1
View File
@@ -297,6 +297,7 @@ class CLI( Cmd ):
break break
except IOError: except IOError:
error( 'error reading file %s\n' % args[ 0 ] ) error( 'error reading file %s\n' % args[ 0 ] )
self.inputFile.close()
self.inputFile = None self.inputFile = None
def do_dpctl( self, line ): def do_dpctl( self, line ):