##// END OF EJS Templates
Replaced append mode for saving ABS files with overwrite mode
jortiz -
r270:271
parent child
Show More
@@ -53,7 +53,7
53 return datetime.today().strftime("%Y%m%d%H%M%S%f")
53 return datetime.today().strftime("%Y%m%d%H%M%S%f")
54
54
55 def saveFile(self, filename):
55 def saveFile(self, filename):
56 f = open(filename, 'a+')
56 f = open(filename, 'w+')
57 f.write(self.content)
57 f.write(self.content)
58 f.close()
58 f.close()
59 No newline at end of file
59
General Comments 0
You need to be logged in to leave comments. Login now