From 264e656b17a18977b00245fea19e9ec36d5be004 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 18:55:31 +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 ffbd2d8..d62562e 100644 --- a/docs/source/python/custom_ui_doc/Common.rst +++ b/docs/source/python/custom_ui_doc/Common.rst @@ -212,7 +212,7 @@ The methods described in this section are applicable to all custom UI controls e # When the my_Button control is clicked, the information will be output to the console, and the robot will shoot once. 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) ..