remove debug file on start

This commit is contained in:
chrys 2016-10-19 22:49:40 +02:00
parent e3ce8c31f8
commit f7ce113557

View File

@ -21,6 +21,11 @@ class debug():
self._fileOpened = False
def initialize(self, environment):
self.env = environment
if os.path.exists(self._fileName):
try:
os.remove(self._fileName)
except OSError, e:
print ("Error: %s - %s." % (e.filename,e.strerror))
def shutdown(self):
self.closeDebugFile()
def __del__(self):