(self,file='index')
| 45 | p(txt) |
| 46 | |
| 47 | def save(self,file='index'): |
| 48 | html_file = '%s/%s.html' % (self.web_dir,file) |
| 49 | f = open(html_file, 'wt') |
| 50 | f.write(self.doc.render()) |
| 51 | f.close() |
| 52 | |
| 53 | |
| 54 | if __name__ == '__main__': |
no outgoing calls
no test coverage detected