Chromium Code Reviews| Index: grit/format/policy_templates/writers/doc_writer.py |
| =================================================================== |
| --- grit/format/policy_templates/writers/doc_writer.py (revision 177) |
| +++ grit/format/policy_templates/writers/doc_writer.py (working copy) |
| @@ -590,6 +590,10 @@ |
| def BeginTemplate(self): |
| # Add a <div> for the summary section. |
| + if self._GetChromiumVersionString() is not None: |
| + self.AddComment(self._main_div, self.config['build'] + ' version: ' +\ |
|
pastarmovj
2014/10/07 15:47:16
space after + (you'll need to split on the previou
cschuet1
2014/10/07 16:00:23
Done.
|
| + self._GetChromiumVersionString()) |
| + |
| summary_div = self.AddElement(self._main_div, 'div') |
| self.AddElement(summary_div, 'a', {'name': 'top'}) |
| self.AddElement(summary_div, 'br') |