| Index: tools/grit/grit/format/policy_templates/writers/admx_writer.py
|
| diff --git a/tools/grit/grit/format/policy_templates/writers/admx_writer.py b/tools/grit/grit/format/policy_templates/writers/admx_writer.py
|
| index 8737f547f7bb5737bb4cb10b2ff754799bf031a6..06863d8289a9c4b3ef3cc04167e4c4f28e8c97f1 100644
|
| --- a/tools/grit/grit/format/policy_templates/writers/admx_writer.py
|
| +++ b/tools/grit/grit/format/policy_templates/writers/admx_writer.py
|
| @@ -6,12 +6,12 @@ from xml.dom import minidom
|
| from grit.format.policy_templates.writers import xml_formatted_writer
|
|
|
|
|
| -def GetWriter(config, messages):
|
| +def GetWriter(config):
|
| '''Factory method for instanciating the ADMXWriter. Every Writer needs a
|
| GetWriter method because the TemplateFormatter uses this method to
|
| instantiate a Writer.
|
| '''
|
| - return ADMXWriter(['win'], config, messages)
|
| + return ADMXWriter(['win'], config)
|
|
|
|
|
| class ADMXWriter(xml_formatted_writer.XMLFormattedWriter):
|
|
|