diff --git a/coconut/compiler/compiler.py b/coconut/compiler/compiler.py index 458d6c28..0fb12c37 100644 --- a/coconut/compiler/compiler.py +++ b/coconut/compiler/compiler.py @@ -4575,7 +4575,7 @@ def string_atom_handle(self, original, loc, tokens, allow_silent_concat=False): return tokens[0] else: if not allow_silent_concat: - self.strict_err_or_warn("found Python-style implicit string concatenation (use explicit '+' instead)", original, loc) + self.strict_err_or_warn("found implicit string concatenation (use explicit '+' instead)", original, loc) if any(s.endswith(")") for s in tokens): # has .format() calls # parens are necessary for string_atom_handle return "(" + " + ".join(tokens) + ")"