Update evform.py

Clarify file path not including .py
This commit is contained in:
Antrare 2023-01-03 09:08:28 +11:00 committed by GitHub
parent 0bde1a034b
commit 41465bf01a

View file

@ -61,8 +61,8 @@ Usage
```python
from evennia import EvForm, EvTable
# create a new form from the template
form = EvForm("path/to/testform.py")
# create a new form from the template - do not include the .py of the filename!
form = EvForm("path/to/testform")
# alteratively, you can supply the template as a dict: