Skip to content

Commit

Permalink
Fix #26
Browse files Browse the repository at this point in the history
  • Loading branch information
gtarawneh committed Jul 24, 2017
1 parent 137c2f1 commit 04c60d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LanguageTool.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ def getServer(settings, forceServer):
if forceServer == "local":
server = settings.get('languagetool_server_local', 'http://localhost:8081/v2/check')
else:
server = settings.get('languagetool_server', 'https://languagetool.org/api/v2/check')
server = settings.get('languagetool_server_remote', 'https://languagetool.org/api/v2/check')
return server

class LanguageToolCommand(sublime_plugin.TextCommand):
Expand Down

0 comments on commit 04c60d8

Please sign in to comment.