~adamblackburn/wicd/1.6.2.1

« back to all changes in this revision

Viewing changes to wicd/backends/be-ioctl.py

  • Committer: Adam Blackburn
  • Date: 2009-08-26 03:24:45 UTC
  • Revision ID: compwiz18@gmail.com-20090826032445-gcx1kqyj2d1fmhpd
reverted to revision 436 (1.6.2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
288
288
        try:
289
289
            results = self.scan_iface.Scan()
290
290
        except iwscan.error, e:
291
 
            print "ERROR: %s" % e
 
291
            print "ERROR: %s"
292
292
            return []
293
293
        return filter(None, [self._parse_ap(cell) for cell in results])
294
294