Skip to content

Commit 94b1c8b

Browse files
Fix the esi problem for Serenity when setting
1 parent 6e3b7ff commit 94b1c8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

service/esi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def login(self):
112112
s = re.search(r'(?<=code=)[a-zA-Z0-9\-_]*', dlg.ssoInfoCtrl.Value.strip())
113113
if s:
114114
# skip state verification and go directly through the auth code processing
115-
self.handleLogin(s.group)
115+
self.handleLogin(s.group(0))
116116
else:
117117
pass
118118
# todo: throw error

0 commit comments

Comments
 (0)