From f289b24eb803cbfc3e100d636ac4b89660c8d129 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Sun, 28 Jul 2024 20:56:03 -0700 Subject: [PATCH] Update websocketexample.py --- tutorials/websocket_tutorial/websocketexample.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/websocket_tutorial/websocketexample.py b/tutorials/websocket_tutorial/websocketexample.py index a2cb0bb..51ddb95 100644 --- a/tutorials/websocket_tutorial/websocketexample.py +++ b/tutorials/websocket_tutorial/websocketexample.py @@ -203,7 +203,7 @@ def make_cube(): # Save the contents to a file. dir_path = os.path.dirname(os.path.realpath(__file__)) - png_path = os.path.join(dir_path, "snapshot.png") + png_path = os.path.join(dir_path, "output.png") print(png_path) with open(png_path, "wb") as f: f.write(png_contents)