aboutsummaryrefslogtreecommitdiffstats
path: root/sources/pyside6/doc/tutorials
diff options
context:
space:
mode:
authorCristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>2020-12-30 02:58:00 +0100
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-01-04 18:15:31 +0000
commitac07f3f6ec396243f63a3a604613fe805cf190e2 (patch)
tree98817f27a087c14a7021adb643caf40d88ee481e /sources/pyside6/doc/tutorials
parent98919e94556eb96a7a0afb5e160c7634c4fbf4ef (diff)
doc/tests: update old style print
There were some leftovers from Python 2 still around our code, this patch only covers the 'print' cases. Change-Id: Icf574be6a40cdb233d3c410c2ec831d2d09bb735 Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io> (cherry picked from commit b3a8c9898cca52b63d270a54651ec71de9b32238) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
Diffstat (limited to 'sources/pyside6/doc/tutorials')
-rw-r--r--sources/pyside6/doc/tutorials/basictutorial/dialog.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/pyside6/doc/tutorials/basictutorial/dialog.rst b/sources/pyside6/doc/tutorials/basictutorial/dialog.rst
index 0ced571db..8246ddd7a 100644
--- a/sources/pyside6/doc/tutorials/basictutorial/dialog.rst
+++ b/sources/pyside6/doc/tutorials/basictutorial/dialog.rst
@@ -88,7 +88,7 @@ the Form, so you have to add it after the `init()` function:
# Greets the user
def greetings(self):
- print ("Hello {}".format(self.edit.text()))
+ print("Hello {}".format(self.edit.text()))
Our function just prints the contents of the `QLineEdit` to the
python console. We have access to the text by means of the
@@ -133,7 +133,7 @@ Here is the complete code for this tutorial:
# Greets the user
def greetings(self):
- print ("Hello %s" % self.edit.text())
+ print("Hello %s" % self.edit.text())
if __name__ == '__main__':
# Create the Qt Application