From c4a049908fdc8b3da4661cf978b2918acab94b3c Mon Sep 17 00:00:00 2001 From: jgaunt Date: Sat, 9 Nov 2019 21:20:17 -0500 Subject: [PATCH] Update 'freenas_network_unlock.py' --- freenas_network_unlock.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/freenas_network_unlock.py b/freenas_network_unlock.py index 3009b6b..3bdd1ea 100644 --- a/freenas_network_unlock.py +++ b/freenas_network_unlock.py @@ -2,9 +2,9 @@ import requests # For the api calls import platform # For getting the operating system name import subprocess # For executing a shell command import yaml # For parsing the yaml config file -import config # configuration file +import config as cfg # configuration file -print(config) +print(cfg) exit()