made a similar commit at same time as asdf's. reverting so that asdf's bigger commit can be merged

This reverts commit 1197fa56a7.
This commit is contained in:
cmccabe 2019-11-30 15:05:35 +00:00
parent 1197fa56a7
commit 4c43001f43
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ def view_link_in_browser(url, post_id):
or url.startswith("https://")
or url.startswith("http://")
):
subprocess.call([browser, url])
subprocess.call(["lynx", url])
else:
print("Sorry, that url doesn't start with gopher://, http:// or https://")
tryAnyway = input("Do you want to try it in", browser, "anyway? Y/[N] ")