~pablorubianes-uy/clicompanion/dev

« back to all changes in this revision

Viewing changes to clicompanionlib/controller.py

  • Committer: david.caro.estevez at gmail
  • Date: 2011-12-31 14:49:46 UTC
  • Revision ID: david.caro.estevez@gmail.com-20111231144946-vcfj4mt6dlq20z64
fixed a problem with the searches

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
        #clear CMNDS list then populate it with the filteredlist of commands
366
366
        view.CMNDS = []
367
367
        for line in modelfilter:
368
 
            filteredcommandplus = tuple(line[0:2])
 
368
            filteredcommandplus = tuple(modelfilter.get(line.iter, 0, 1, 2))
369
369
            view.CMNDS.append(filteredcommandplus)
370
370
 
371
371