diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-12-09 18:22:47 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-12-09 18:22:47 +0100 |
commit | 518c863bcaab4bd138d655dbb280fbd9153cda49 (patch) | |
tree | b92b809919808e8c45cf66436e986bf72eb7d3af /test | |
parent | 45d2f588889b385b8a7a209e3e6fe2559cd5b950 (diff) | |
download | connman-518c863bcaab4bd138d655dbb280fbd9153cda49.tar.gz connman-518c863bcaab4bd138d655dbb280fbd9153cda49.tar.bz2 connman-518c863bcaab4bd138d655dbb280fbd9153cda49.zip |
Use ProposeScan method
Diffstat (limited to 'test')
-rwxr-xr-x | test/start-scanning | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/start-scanning b/test/start-scanning index 9d3f4db5..aaa3e58a 100755 --- a/test/start-scanning +++ b/test/start-scanning @@ -19,10 +19,10 @@ for path in properties["Devices"]: if (properties["Type"] == "wifi"): print " Started WiFi scanning" - device.Scan() + device.ProposeScan() elif (properties["Type"] == "wimax"): print " Started WiMAX scanning" - device.Scan() + device.ProposeScan() else: print " No scanning" |