summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xmain.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/main.py b/main.py
index aa58ca0..f19520c 100755
--- a/main.py
+++ b/main.py
@@ -26,7 +26,8 @@ def main():
url = ogconfig.get_value_section('opengnsys', 'url')
mode = ogconfig.get_value_section('opengnsys', 'mode')
- proc = subprocess.Popen(["browser", "-qws", url])
+ if mode == 'linux':
+ proc = subprocess.Popen(["browser", "-qws", url])
client = ogClient(ip, int(port), mode)
client.connect()