update execfile to py3 in tutorial

This commit is contained in:
Scott Fennell 2022-05-26 13:46:49 -05:00 committed by GitHub
parent 83652ad811
commit a6eeff930f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,8 +62,8 @@ The `realtime.py` file must be included in the RUN_test/input.py file. When
finished, the latest version of the input file should look like the following:
```python
execfile("Modified_data/realtime.py")
execfile("Modified_data/cannon.dr")
exec(open("Modified_data/realtime.py").read())
exec(open("Modified_data/cannon.dr").read())
trick.stop(5.2)
```