Skip to content

Commit a1f8a7e

Browse files
committed
Remove .exe extension from the documentation for debugging on Linux
1 parent a4eb9c1 commit a1f8a7e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,11 @@ While in the root directory of the game, run the command for your appropriate op
207207
```
208208
### Linux x86 (32 bit)
209209
```
210-
./lib/linux-i686/python.exe -EO "Angels with Scaly Wings.py"
210+
./lib/linux-i686/python -EO "Angels with Scaly Wings.py"
211211
```
212212
### Linux x86_64 (64 bit)
213213
```
214-
./lib/linux-x86_64/python.exe -EO "Angels with Scaly Wings.py"
214+
./lib/linux-x86_64/python -EO "Angels with Scaly Wings.py"
215215
```
216216

217217
Should you print to the console in your code, you may run into an error such as ``` LookupError: unknown encoding: cp437```. This occurs because you're executing a local version of python, which only has utf-8 string encodings loaded in. You can fix this by using ```sprnt``` from ```modlib``` or encoding your string with ```myStr.encode('utf-8')``` before printing.
@@ -259,4 +259,4 @@ Should you print to the console in your code, you may run into an error such as
259259

260260
\# Postponing chapters and key game events without manual label lookup
261261

262-
\* results may vary
262+
\* results may vary

0 commit comments

Comments
 (0)