Skip to content

Commit 0f94174

Browse files
authored
Merge pull request #5 from jonlabelle/-1
Make encrypted (https) request
2 parents 5c062ab + 6903167 commit 0f94174

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

‎Stackoverflow.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import webbrowser
1515

1616
def SearchFor(text):
17-
url = 'http://stackoverflow.com/search?tab=relevance&q=' + text.replace(' ','%20')
17+
url = 'https://stackoverflow.com/search?tab=relevance&q=' + text.replace(' ','%20')
1818
webbrowser.open_new_tab(url)
1919

2020
class StackoverflowSearchSelectionCommand(sublime_plugin.TextCommand):
@@ -40,4 +40,4 @@ def on_change(self, input):
4040
pass
4141

4242
def on_cancel(self):
43-
pass
43+
pass

0 commit comments

Comments
 (0)