From 4b83169070ab2cb15d1b24b011a0ee3b2f6e35db Mon Sep 17 00:00:00 2001 From: blitzmann Date: Tue, 26 Oct 2021 12:20:11 -0400 Subject: [PATCH] typo fix --- gui/builtinPreferenceViews/pyfaEsiPreferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/builtinPreferenceViews/pyfaEsiPreferences.py b/gui/builtinPreferenceViews/pyfaEsiPreferences.py index 7e6ea0551..1356fec16 100644 --- a/gui/builtinPreferenceViews/pyfaEsiPreferences.py +++ b/gui/builtinPreferenceViews/pyfaEsiPreferences.py @@ -37,7 +37,7 @@ class PFEsiPref(PreferenceView): rbSizer = wx.BoxSizer(wx.HORIZONTAL) self.rbMode = wx.RadioBox(panel, -1, _t("Login Authentication Method"), wx.DefaultPosition, wx.DefaultSize, [_t('Local Server'), _t('Manual')], 1, wx.RA_SPECIFY_COLS) - self.rbMode.SetItemToolTip(0, _t("This options starts a local webserver that EVE SSO Server will call back to" + self.rbMode.SetItemToolTip(0, _t("This option starts a local webserver that EVE SSO Server will call back to" " with information about the character login.")) self.rbMode.SetItemToolTip(1, _t("This option prompts users to copy and paste information to allow for" " character login. Use this if having issues with the local server."))