From: Drew Fisher Date: Sat, 19 Feb 2011 11:35:30 +0000 (-0600) Subject: Add to the list of format-excluded elements. X-Git-Url: http://git.zarvox.org/shortlog/%7Bgravatar%7D?a=commitdiff_plain;h=8c2e332a00733ce17940d3ce633d589b1af04abf;p=shortlog.git Add
to the list of format-excluded elements. Signed-off-by: Drew Fisher --- diff --git a/shortlog.py b/shortlog.py index a2606d3..806c640 100644 --- a/shortlog.py +++ b/shortlog.py @@ -85,7 +85,7 @@ def makeParas(lines): paragraphs.append("\n".join(thispara)) # wrap paragraphs in

if they aren't other HTML tags that don't want to be wrapped in

tags - return map( lambda x: x if "

    " in x or "
      " in x or "
      " in x else "

      " + x + "

      ", paragraphs) + return map( lambda x: x if "
        " in x or "
          " in x or "
          " in x or "
" in x else "

" + x + "

", paragraphs) def getFileList(numdays=7):