summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-09-25 19:15:26 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2017-09-25 19:29:36 +0200
commit58e05c00ab0a762866e3719974d5b74096df233c (patch)
tree3927c815a9846b5b86033a9cbc01795cfb4d3876
parentcb3db6f85d5d2bc986fccb9568d85d1a7423d576 (diff)
Remove redundant str()
-rw-r--r--kconfiglib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index c144283..0cab18f 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -3115,7 +3115,7 @@ class Comment(Item):
"(no additional dependencies)")
return _lines("Comment",
- "Text: " + str(self._text),
+ "Text: " + self._text,
"Dependencies: " + dep_str,
"Additional dependencies from enclosing menus and ifs:",
additional_deps_str,