From ae7a5ad777520f7ec1f6c890ce049f997f9dbd78 Mon Sep 17 00:00:00 2001 From: Scott Fennell Date: Wed, 22 Jan 2020 11:49:19 -0600 Subject: [PATCH] update tutorial for python 3 --- docs/tutorial/ATutRecordingData.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/ATutRecordingData.md b/docs/tutorial/ATutRecordingData.md index 22690d2f..590cffa8 100644 --- a/docs/tutorial/ATutRecordingData.md +++ b/docs/tutorial/ATutRecordingData.md @@ -50,7 +50,7 @@ section. This is accomplished by adding execfile to the simulation input file. Add the line: ```python - execfile("Modified_data/cannon.dr") + exec(open("Modified_data/data_record.dr").read()) ``` to the top of the `input.py` file and then save it.