Chromium Code Reviews| Index: grit/format/policy_templates/writers/plist_strings_writer.py |
| =================================================================== |
| --- grit/format/policy_templates/writers/plist_strings_writer.py (revision 177) |
| +++ grit/format/policy_templates/writers/plist_strings_writer.py (working copy) |
| @@ -22,6 +22,9 @@ |
| [lang].lproj subdirectories of the manifest bundle. |
| ''' |
| + def WriteComment(self, comment): |
| + self._out.append('''<!-- ''' + comment + ''' -->''' ) |
|
pastarmovj
2014/10/07 14:54:36
triple quotes.
cschuet1
2014/10/07 15:42:47
Done.
|
| + |
| def _AddToStringTable(self, item_name, caption, desc): |
| '''Add a title and a description of an item to the string table. |
| @@ -63,6 +66,8 @@ |
| def BeginTemplate(self): |
| app_name = plist_helper.GetPlistFriendlyName(self.config['app_name']) |
| + if self._GetChromiumVersionString() is not None: |
| + self.WriteComment(self.config['build'] + ''' version: ''' + self._GetChromiumVersionString()) |
|
pastarmovj
2014/10/07 14:54:36
line length, quotes.
cschuet1
2014/10/07 15:42:47
Done.
|
| self._AddToStringTable( |
| app_name, |
| self.config['app_name'], |