summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--logilab/common/optik_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/logilab/common/optik_ext.py b/logilab/common/optik_ext.py
index 222f48b..d044855 100644
--- a/logilab/common/optik_ext.py
+++ b/logilab/common/optik_ext.py
@@ -379,7 +379,7 @@ class ManHelpFormatter(HelpFormatter):
# mypy: "OptionParser"; expected "Option"
# it still works?
help_text = self.expand_default(option) # type: ignore
- help = " ".join([l.strip() for l in help_text.splitlines()])
+ help = " ".join([line.strip() for line in help_text.splitlines()])
else:
help = ""
return """.IP "%s"