Commit 3eb86a20f0b20e44b34087c16e20ff40cead7420

  • avatar
  • Waylan Limberg <waylan @d…v.westell.com>
  • Tue Feb 23 04:53:55 CET 2010
Changes path of html output to be written into current dir rather than a tmp dir. No need to create the tmp dir on first run.
.gitignore
(1 / 1)
  
22*.bak
33*.tmp
44*.swp
5tmp/*
5test-output.html
66build/*
77dist/*
88MANIFEST
  
8181 else:
8282 self.html.append('OK')
8383 self.html.append('</div></body></html>')
84 f = open('tmp/test-output.html', 'w')
84 f = open('test-output.html', 'w')
8585 for l in self.html:
8686 f.write(l)
8787 f.close()