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)