~ctf/checkbox/bug811177

« back to all changes in this revision

Viewing changes to plugins/device_info.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:
85
85
 
86
86
class DeviceInfo(Plugin):
87
87
 
88
 
    def __init__(self, device_manager=None):
89
 
        super(DeviceInfo, self).__init__()
 
88
    def __init__(self, config, device_manager=None):
 
89
        super(DeviceInfo, self).__init__(config)
90
90
        self._device_manager = device_manager or DeviceManager()
91
91
 
92
92
    def gather(self):