summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-05-25 23:08:15 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2018-05-25 23:08:15 +0200
commitbce7d706e5acd6cc86ad2b881e23b0382b74d667 (patch)
tree347c8625d2c1bce64346c271092cd506220a7dbf /kconfiglib.py
parentc14e4111d278b1c5188386a76cc6c04ef9e09c0c (diff)
Style nit
Diffstat (limited to 'kconfiglib.py')
-rw-r--r--kconfiglib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index a679eaa..a1e3038 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -4762,8 +4762,8 @@ def _check_sym_sanity(sym):
# the quotes were left out if 'foo' isn't all-uppercase
# (and no symbol named 'foo' exists).
sym.kconfig._warn("style: quotes recommended around "
- "default value for string symbol {}"
- .format(_name_and_loc(sym)))
+ "default value for string symbol "
+ + _name_and_loc(sym))
elif sym.orig_type in (INT, HEX) and \
not _int_hex_ok(default, sym.orig_type):