Update Uptated-Prototype/PiperTTS-GUI-Test.py

This commit is contained in:
2025-12-09 15:05:20 -08:00
parent 867e53a50c
commit e1c9ac196e

View File

@@ -201,7 +201,8 @@ My_Test_Label = Label(Controls_Box_Frame, text="Test Text?")
My_Test_Label.grid(row=0, column=0, columnspan=4) My_Test_Label.grid(row=0, column=0, columnspan=4)
try: try:
try: try:
MyTestText = len(Input_Box.get("1.0","end-1c").splitlines()) Temp_Text = Input_Box.get("1.0","end-1c")
MyTestText = len(Temp_Text.splitlines())
except: except:
print("Fuckup again.") print("Fuckup again.")
except: except: