From 1c37e9cf06c5243c27f1fe5d2054b7a7cf7c7a88 Mon Sep 17 00:00:00 2001 From: Tayfun ULU Date: Mon, 18 Dec 2017 08:37:30 +0300 Subject: [PATCH] Rename module name to wifimgr - Rename networkconfig.py to wifimgr.py - Update import module with new file name. --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 819aa15..3ff5248 100644 --- a/main.py +++ b/main.py @@ -1,7 +1,7 @@ -import networkconfig +import wifimgr -wlan = networkconfig.get_connection() +wlan = wifimgr.get_connection() if wlan is None: print("Could not initialize the network connection.") while True: