From 4c43001f4306d367f3094acafffce1049f1600b8 Mon Sep 17 00:00:00 2001 From: cmccabe Date: Sat, 30 Nov 2019 15:05:35 +0000 Subject: [PATCH] made a similar commit at same time as asdf's. reverting so that asdf's bigger commit can be merged This reverts commit 1197fa56a7dcfd55a7987e6c3fb989e1ed8eb7d2. --- linkulator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linkulator b/linkulator index c7252cf..d09b0f3 100755 --- a/linkulator +++ b/linkulator @@ -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] ")