diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2017-09-25 19:15:26 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2017-09-25 19:29:36 +0200 |
| commit | 58e05c00ab0a762866e3719974d5b74096df233c (patch) | |
| tree | 3927c815a9846b5b86033a9cbc01795cfb4d3876 /kconfiglib.py | |
| parent | cb3db6f85d5d2bc986fccb9568d85d1a7423d576 (diff) | |
Remove redundant str()
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 2 |
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, |
