From 06c131eacdb612a867b054640c2dd5f4dbb8f85c Mon Sep 17 00:00:00 2001 From: TheDaChicken Date: Sat, 15 Jun 2019 19:00:00 -0700 Subject: [PATCH] Changed message. --- SERVER/PYTHON-FILES/Code/dataHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SERVER/PYTHON-FILES/Code/dataHandler.py b/SERVER/PYTHON-FILES/Code/dataHandler.py index 68c5e13..fac6301 100644 --- a/SERVER/PYTHON-FILES/Code/dataHandler.py +++ b/SERVER/PYTHON-FILES/Code/dataHandler.py @@ -50,7 +50,7 @@ def createDataFile(): def loadData(): if not os.path.isfile(data_yml_path): - warning("Unable to find data.yml! Should have been created unless being ran remotely.") + warning("Unable to find data.yml! Should have been created unless ran remotely.") return None with open(data_yml_path, 'r') as stream: yaml_config = yaml.load(stream, Loader=yaml.FullLoader)