diff options
author | Cristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2021-04-30 17:49:36 +0200 |
---|---|---|
committer | Cristian Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2021-05-05 20:44:49 +0200 |
commit | 57e681930f6b4c7c311fc70a66317ef64dee4cb1 (patch) | |
tree | bb74a1c956c54be258ccb79eb2e13fdb82107301 /examples/opengl/textures | |
parent | 36431b071095b8999347df87621bf23ffcc2ac3d (diff) |
examples: use exec() instead of exec_()
Change-Id: I07dd4339093be8fcc80e63a2ff0448e998356203
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'examples/opengl/textures')
-rw-r--r-- | examples/opengl/textures/textures.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/opengl/textures/textures.py b/examples/opengl/textures/textures.py index e7362da1e..521c099b3 100644 --- a/examples/opengl/textures/textures.py +++ b/examples/opengl/textures/textures.py @@ -53,7 +53,7 @@ except ImportError: "PyOpenGL must be installed to run this example.", QtWidgets.QMessageBox.Close) messageBox.setDetailedText("Run:\npip install PyOpenGL PyOpenGL_accelerate") - messageBox.exec_() + messageBox.exec() sys.exit(1) import textures_rc @@ -228,4 +228,4 @@ if __name__ == "__main__": app = QtWidgets.QApplication(sys.argv) window = Window() window.show() - sys.exit(app.exec_()) + sys.exit(app.exec()) |