~manjo/dvdstore/trunk

« back to all changes in this revision

Viewing changes to drivers/linux/dvdstore.py

  • Committer: manoj.iyer at canonical
  • Date: 2013-02-22 22:31:29 UTC
  • Revision ID: manoj.iyer@canonical.com-20130222223129-290cku51yy9yww5u
fixed typo error in searchdvd()

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
        numres = br.form.find_control(name="limit_num", nr=0)
45
45
        numres.value = sample(['1','2','3','4','5','6','7','8','9','10'], 1)
46
46
        responds = br.submit()
47
 
        if "No DVDs Found" in sel.read():
 
47
        if "No DVDs Found" in responds.read():
48
48
                return 1
49
49
        return 0
50
50