From 5e5228cf4e9860c7cef59dd544eeed951dd56fbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lee=20Han=20=7C=20=EC=9D=B4=ED=95=9C=EA=B2=B0?= <76910100+hanlee55@users.noreply.github.com> Date: Thu, 23 Feb 2023 19:09:22 +0900 Subject: [PATCH] Fix: SyntaxError with quotation marks The problem with quotation marks inside a string --- docs/source/python/custom_ui_doc/Common.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/python/custom_ui_doc/Common.rst b/docs/source/python/custom_ui_doc/Common.rst index 7cc1a79..7dff327 100644 --- a/docs/source/python/custom_ui_doc/Common.rst +++ b/docs/source/python/custom_ui_doc/Common.rst @@ -212,7 +212,7 @@ Common # 當 my_Button 控件被點擊後,打印信息到控制台上,機器人會開槍射擊一次 def button_callback(widget,*args,**kw): - print('the button is clicked and the button's name is '+ widget.get_name()) + print("the button is clicked and the button's name is "+ widget.get_name()) gun_ctrl.fire_once() my_Button.callback_register('on_click',button_callback) ..