misc: Fix broken code example in bug_report.md

Change-Id: I9bc1b42d488a415d2ea165385d83fea3d4ac288d
This commit is contained in:
Bobby R. Bruce
2023-09-02 04:46:04 -07:00
parent 188d29fe05
commit 1ec58d589a

View File

@@ -25,9 +25,9 @@ If writing code, or a terminal command, use code blocks. Either an inline code b
```python
int x=2;
int y=3'
print(x+y);
int x=2
int y=3
print(x+y)
```
If possible, please include the Python configuration script used and state clearly any parameters passed.