Update Trouble Shooting authored by Jonathan Ehret's avatar Jonathan Ehret
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
<blockquote> <blockquote>
Unreal produces byte order marks (BOM) for some reaseon (for possible solutions see #93), you can place and execute the following python code in the folder (``StudyFramework/StudyLogs``) where the phase csv files are: Unreal produces byte order marks (BOM) for some reaseon (for possible solutions see #93), you can place and execute the following python code in the folder (``StudyFramework/StudyLogs``) where the phase csv files are:
<details><summary>RemoveBOMs</summary>
```python ```python
import os import os
...@@ -36,6 +37,9 @@ for filename in os.listdir("./"): ...@@ -36,6 +37,9 @@ for filename in os.listdir("./"):
ConvertCoding(filename) ConvertCoding(filename)
``` ```
</details>
</blockquote> </blockquote>
<br> <br>
<br> <br>
... ...
......