From 8cdcdf50d527f2496e21ff2a7a8e1cd068bcc081 Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Fri, 28 Mar 2014 05:16:22 -0700 Subject: [PATCH] FIX: change get_new_profile call Signed-off-by: Sean Robinson --- wifiradar/connections.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wifiradar/connections.py b/wifiradar/connections.py index 2445f4a..272bfe2 100644 --- a/wifiradar/connections.py +++ b/wifiradar/connections.py @@ -132,7 +132,7 @@ def scanning_thread(config_manager, msg_pipe): hits = scandata.split(' - ') for hit in hits: # set the defaults for profile template - profile = get_new_profile() + profile = misc.get_new_profile() m = essid_pattern.search(hit) if m: # we found an essid -- 2.11.4.GIT