Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.
diff --git a/Lib/antigravity.py b/Lib/antigravity.py
index 7670187..9b14368 100644
--- a/Lib/antigravity.py
+++ b/Lib/antigravity.py
@@ -2,7 +2,7 @@
 import webbrowser
 import hashlib
 
-webbrowser.open("http://xkcd.com/353/")
+webbrowser.open("https://xkcd.com/353/")
 
 def geohash(latitude, longitude, datedow):
     '''Compute geohash() using the Munroe algorithm.
diff --git a/Misc/NEWS b/Misc/NEWS
index c4cc409..5418add 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,8 @@
 Library
 -------
 
+- Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam.
+
 - Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin.
   Patch by Gergely Imreh and Markus Holtermann.