~kelemeng/checkbox/bug868571

« back to all changes in this revision

Viewing changes to cli/plugins/cli_interface.py

  • Committer: Marc Tardif
  • Date: 2007-10-04 23:12:10 UTC
  • Revision ID: marc.tardif@canonical.com-20071004231210-unxckndkgndxfdp6
Refactored questions to use templates and scripts which fixes bug #149195.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
 
5
5
class CLIInterfacePlugin(UserInterfacePlugin):
6
 
    def __init__(self):
7
 
        super(CLIInterfacePlugin, self).__init__(CLIInterface())
 
6
    def __init__(self, config):
 
7
        super(CLIInterfacePlugin, self).__init__(config, CLIInterface())
8
8
 
9
9
 
10
10
factory = CLIInterfacePlugin