~mago-contributors/mago/empathy

« back to all changes in this revision

Viewing changes to mago/cmd/discovery.py

  • Committer: Ara Pulido
  • Date: 2009-07-16 13:01:50 UTC
  • mfrom: (93.2.1 trunk)
  • Revision ID: ara@ubuntu.com-20090716130150-wxyxpbm64dnq291y
MergedĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
194
194
        module = imp.load_module(module_name, *load_args)
195
195
 
196
196
        cls = getattr(module, class_name)
197
 
        return cls(*self.args)
 
197
        return cls(**self.args)
198
198
 
199
199
    
200
200
    def get_log_filename(self, application_target_directory):