Don't show the owner if there is none
Wed Nov 9 00:30:02 UTC 2005 Alberto Bertogli <albertogli@telpin.com.ar>
* Don't show the owner if there is none
{
hunk ./darcsweb.cgi 392
- author = "Unknown owner <unknown@example.org>"
+ author = None
hunk ./darcsweb.cgi 1119
- print ' <tr><td>owner</td><td>%s</td></tr>' % escape(owner)
+ if owner:
+ print ' <tr><td>owner</td><td>%s</td></tr>' % escape(owner)
}