Skip to content

Commit b397434

Browse files
committed
minor fix
1 parent dcb6f9e commit b397434

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

fortls/langserver.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -237,10 +237,10 @@ def serve_initialize(self, request: dict):
237237

238238
# Log final options
239239
final_options = {}
240-
for param in self.arguments_list:
241-
if param.startswith("debug_") and param != "debug_log":
240+
for argument in self.arguments_list:
241+
if argument.startswith("debug_") and argument != "debug_log":
242242
continue
243-
final_options[param] = getattr(self, param)
243+
final_options[argument] = getattr(self, argument)
244244
log.debug("Final options: %s", final_options)
245245

246246
return {"capabilities": server_capabilities}

0 commit comments

Comments
 (0)