Skip to content

Commit

Permalink
Merge pull request #12 from dsgnr/icanhazip_http
Browse files Browse the repository at this point in the history
Use http for icanhazip for EL6
  • Loading branch information
dsgnr committed Jul 7, 2021
2 parents 44c475b + 756f7d8 commit 16b5f66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pleskbuddy.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from urllib2 import urlopen


__version__ = "2.0.0"
__version__ = "2.0.1"


def options():
Expand Down Expand Up @@ -117,7 +117,7 @@ def info():
.strip()
.decode("utf-8")
)
public_ip = urlopen("https://ipv4.icanhazip.com").read().strip().decode("utf-8")
public_ip = urlopen("http://ipv4.icanhazip.com").read().strip().decode("utf-8")
psa_info = (
Color.MAGENTA
+ "==== Plesk Information ====\n"
Expand Down

0 comments on commit 16b5f66

Please sign in to comment.