Chromium Code Reviews| Index: grit/format/policy_templates/writers/plist_writer.py |
| =================================================================== |
| --- grit/format/policy_templates/writers/plist_writer.py (revision 177) |
| +++ grit/format/policy_templates/writers/plist_writer.py (working copy) |
| @@ -120,7 +120,8 @@ |
| def BeginTemplate(self): |
| self._plist.attributes['version'] = '1' |
| dict = self.AddElement(self._plist, 'dict') |
| - |
| + if self._GetChromiumVersionString() is not None: |
| + self.AddComment(self._plist, self.config['build'] + ''' version: ''' + self._GetChromiumVersionString()) |
|
pastarmovj
2014/10/07 14:54:36
line too long, quotes.
cschuet1
2014/10/07 15:42:47
Done.
|
| app_name = plist_helper.GetPlistFriendlyName(self.config['app_name']) |
| self._AddStringKeyValuePair(dict, 'pfm_name', app_name) |
| self._AddStringKeyValuePair(dict, 'pfm_description', '') |