Skip to content

Commit 7509ec5

Browse files
committed
Create new release
1 parent aadb193 commit 7509ec5

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

ssh_client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import time
1212
import platform
1313

14-
VERSION = '1.0.3219.78'
14+
VERSION = '1.0.3231.6'
1515
SSH_DIR = '~/.ssh'
1616
CONF_PATH = SSH_DIR + '/pritunl-zero.json'
1717
BASH_PROFILE_PATH = '~/.bash_profile'
@@ -61,17 +61,17 @@ def open_browser(url):
6161
)
6262
except:
6363
try:
64-
if microsoft_wsl or platform.system() == 'Windows':
64+
if platform.system() == 'Windows' or microsoft_wsl:
6565
subprocess.Popen(['powershell.exe', '/c', 'start', url])
6666
elif platform.system() == "Darwin":
6767
subprocess.Popen(['open', url])
6868
elif platform.system() == "Linux":
6969
subprocess.Popen(['sensible-browser', url])
7070
else:
71-
print("unsupported platform: " + platform.system())
71+
print("Unsupported platform: " + platform.system())
7272
sys.exit(1)
7373
except:
74-
print("unable to open browser, please open the url manually")
74+
print("Failed to open browser, open the url manually")
7575
pass
7676

7777

ssh_host_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
except:
1919
HAS_BOTO = False
2020

21-
VERSION = '1.0.3219.78'
21+
VERSION = '1.0.3231.6'
2222
CONF_PATH = '/etc/pritunl-ssh-host.json'
2323
DEF_SSH_CONF_PATH = '/etc/ssh/sshd_config'
2424
DEF_PUB_KEY_CONF_PATH = '/etc/ssh/ssh_host_rsa_key.pub'

0 commit comments

Comments
 (0)