Closed bagage closed 7 years ago
Possible you can find answer to this question on issue #6
Thanks for the pointers @gotlium. I found a solution yet, which is to use printf.format
instead of printf(+)
:
- message.send(message.get_username() + "éhoh")
+ message.send("{} {}".format(message.get_username(), "éhoh")
I'm trying to use the following code:
But it raises an exception:
However it does not raise an exception if I simply use
message.send("éhoh")
normessage.send(message.get_username() + "hello")
.Any idea?