From f11e345dbf4892ae57fe0ffded5f78febb26dc21 Mon Sep 17 00:00:00 2001 From: Javier Sanchez Parra Date: Mon, 23 Mar 2020 15:58:57 +0100 Subject: [PATCH] Rename config file This commit changes the name of the config file from ogagent.cfg to ogclient.cfg. --- cfg/{ogagent.cfg => ogclient.cfg} | 0 main.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename cfg/{ogagent.cfg => ogclient.cfg} (100%) diff --git a/cfg/ogagent.cfg b/cfg/ogclient.cfg similarity index 100% rename from cfg/ogagent.cfg rename to cfg/ogclient.cfg diff --git a/main.py b/main.py index f5d41bd..0337d2f 100644 --- a/main.py +++ b/main.py @@ -14,7 +14,7 @@ from signal import signal, SIGPIPE, SIG_DFL def main(): signal(SIGPIPE, SIG_DFL) ogconfig = ogConfig() - config_path = f'{ogConfig.OG_PATH}ogClient/cfg/ogagent.cfg' + config_path = f'{ogConfig.OG_PATH}ogClient/cfg/ogclient.cfg' if (not ogconfig.parser_file(config_path)): print ('Error: Parsing configuration file') return 0