| Index: tools/grit/grit/format/policy_templates/writers/adm_writer.py
|
| diff --git a/tools/grit/grit/format/policy_templates/writers/adm_writer.py b/tools/grit/grit/format/policy_templates/writers/adm_writer.py
|
| index 51dea06cd4abf57f689bcfca875e40c9577fc42c..76b8b60b879cbb474573525733bd039ffa0f6349 100644
|
| --- a/tools/grit/grit/format/policy_templates/writers/adm_writer.py
|
| +++ b/tools/grit/grit/format/policy_templates/writers/adm_writer.py
|
| @@ -3,14 +3,18 @@
|
| # found in the LICENSE file.
|
|
|
|
|
| -from template_writer import TemplateWriter
|
| +from grit.format.policy_templates.writers import template_writer
|
|
|
|
|
| def GetWriter(info, messages):
|
| + '''Factory method for creating AdmWriter objects.
|
| + See the constructor of TemplateWriter for description of
|
| + arguments.
|
| + '''
|
| return AdmWriter(info, messages)
|
|
|
|
|
| -class AdmWriter(TemplateWriter):
|
| +class AdmWriter(template_writer.TemplateWriter):
|
| '''Class for generating policy templates in Windows ADM format.
|
| It is used by PolicyTemplateGenerator to write ADM files.
|
| '''
|
|
|