Commit 19bebf2e authored by Ronald Oussoren's avatar Ronald Oussoren

Without this patch OSX users couldn't add new help sources because the code

tried to update one item in a tuple.
parent ae1c0981
......@@ -151,6 +151,7 @@ class GetHelpSourceDialog(Toplevel):
pass
else:
# Mac Safari insists on using the URI form for local files
self.result = list(self.result)
self.result[1] = "file://" + path
self.destroy()
......
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