Close the file when done with it.

This commit is contained in:
Baohua Yang
2013-12-21 21:36:22 +08:00
committed by Baohua Yang
parent a6a0cb4331
commit 3780d9cda8
+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 ):