diff options
author | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-06-05 13:08:00 +0200 |
---|---|---|
committer | Roberto Hueso Gómez <rhueso@soleta.eu> | 2020-06-05 13:08:00 +0200 |
commit | d7b7b0b17571c7e36b69314b28dc1ea3a43c2215 (patch) | |
tree | 885a61f6f90b8defbc21be1f37cc21631ff3c6c1 /main.py | |
parent | 3205e0f1e8fde91948b082b3ee0fedfe13b23912 (diff) |
Delete ogConfig.py
This file is only used for its OG_PATH variable, this variable is now in
ogClient.
Diffstat (limited to 'main.py')
-rwxr-xr-x | main.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -11,12 +11,11 @@ import json import subprocess from src.ogClient import * -from src.ogConfig import * from signal import signal, SIGPIPE, SIG_DFL def main(): signal(SIGPIPE, SIG_DFL) - config_path = f'{ogConfig.OG_PATH}ogclient/cfg/ogclient.json' + config_path = f'{ogClient.OG_PATH}ogclient/cfg/ogclient.json' try: with open(config_path, 'r') as f: CONFIG = json.load(f) |