From fcc6976c9d44375c247022816e3e897d3526a8ed Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 1 Jun 2008 20:25:48 +0000 Subject: [PATCH] Add a default for colorfunc. --- sphinx/builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/builder.py b/sphinx/builder.py index bda329cb3..27e3a3d78 100644 --- a/sphinx/builder.py +++ b/sphinx/builder.py @@ -107,7 +107,7 @@ class Builder(object): """ raise NotImplementedError - def status_iterator(self, iterable, summary, colorfunc): + def status_iterator(self, iterable, summary, colorfunc=darkgreen): l = -1 for item in iterable: if l == -1: