Skip to content

Commit

Permalink
Fix #161
Browse files Browse the repository at this point in the history
  • Loading branch information
genotrance committed Feb 2, 2023
1 parent faaa57c commit ba914c0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.8.4 - TBD
- Fixed #164 - PAC function myIpAddress() was broken
- Fixed #161 - PAC regex search was failing

v0.8.3 - 2022-07-19
- Fixed #157 - libcurl wrapper was missing socket definitions for OSX
- Fixed #158 - win32ctypes was not being included in Windows binary
Expand Down
4 changes: 2 additions & 2 deletions px/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -598,9 +598,9 @@ def set_password():
keyring.set_password("Px", State.username, pwd)

if keyring.get_password("Px", State.username) == pwd:
print("Saved successfully")
pprint("Saved successfully")
except KeyboardInterrupt:
print("")
pprint("")

sys.exit()

Expand Down
2 changes: 1 addition & 1 deletion px/pacutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
}
function isPlainHostName(host) {
return host.search("(\\.)|:") == -1;
return host.search("(\\\\.)|:") == -1;
}
function isResolvable(host) {
Expand Down
2 changes: 1 addition & 1 deletion px/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"Px version"

__version__ = "0.8.3"
__version__ = "0.8.4"

0 comments on commit ba914c0

Please sign in to comment.