diff options
Diffstat (limited to 'src/ogClient.py')
-rw-r--r-- | src/ogClient.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/ogClient.py b/src/ogClient.py index 45f7007..a167c71 100644 --- a/src/ogClient.py +++ b/src/ogClient.py @@ -11,7 +11,6 @@ import select import socket import time import email -import platform from io import StringIO from src.restRequest import * @@ -24,10 +23,7 @@ class State(Enum): FORCE_DISCONNECTED = 2 class ogClient: - if platform.system().lower() == 'linux': - OG_PATH = '/opt/opengnsys/ogclient/' - else: - OG_PATH = './' + OG_PATH = '/opt/opengnsys/' def __init__(self, config): self.CONFIG = config |