Commit cd65a030 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Issue #20640: Add https: to url prefixes so test passes on Darwin.

parent c64d942e
......@@ -149,7 +149,7 @@ class GetHelpSourceDialog(Toplevel):
self.path.get().strip())
if sys.platform == 'darwin':
path = self.result[1]
if path.startswith(('www', 'file:', 'http:')):
if path.startswith(('www', 'file:', 'http:', 'https:')):
pass
else:
# Mac Safari insists on using the URI form for local files
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment