diff --git a/PIcontroller.py b/PIcontroller.py index c4befe5..01367f0 100644 --- a/PIcontroller.py +++ b/PIcontroller.py @@ -23,7 +23,7 @@ def fixformatting(message): fixedmessage = [""] counter = 0 for word in message.split(" "): - if counter + len(word) >= 22: + if counter + len(word) >= 20: counter = 0 fixedmessage.append("\n") fixedmessage.append("{} ".format(word))