fix sleepy port_variable typo

This commit is contained in:
Jesse Hitch 2022-12-18 09:29:46 +01:00
parent b247dde1a5
commit ec3c65b7ed
No known key found for this signature in database
GPG Key ID: C01D207CE04D55D9
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ class EmailIMAPSegment(KwThreadedSegment):
password = os.environ[password_variable]
if server_variable:
server = os.environ[server_variable]
if port:
if port_variable:
port = os.environ[port_variable]
return _IMAPKey(username, password, server, port, folder, use_ssl)