#!/usr/bin/env python # -*- coding: utf-8 -*- """ fix_epydoc_tables ~~~~~~~~~~~~~~~~~ Fix epydoc "summary" tables. :copyright: 2006 by Georg Brandl. :license: GNU GPL, see LICENSE for more details. """ import sys, os from os.path import join path = sys.argv[1] for fn in os.listdir(path): fn = join(path, fn) if not fn.endswith(".html"): continue ll = list(file(fn)) c = False d = False n = False for i, l in enumerate(ll): if "