|
From: Paul J. <pj...@pl...> - 2005-11-22 06:26:47
|
create_empty fails to accomplish its goal (at least, version 4.0.0b5 does)
without the following patch:
@@ -772,7 +772,7 @@
if self.create_empty:
# this is a good test that the filename specified
# isn't impossible - like on a non existent device
- h = open(self.filename)
+ h = open(self.filename,'w')
h.write('')
h.close()
infile = []
|