Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 18 additions & 5 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
## Checkboxes

- [ ] Updated fsociety
- [X] Updated fsociety
- [ ] Issue does not already exist
- [ ] fsociety issue, not a tool issue
- [X] fsociety issue, not a tool issue

--Updated Fsociety imports with new ones

--Line 184/185 in fsociety.py has an issue :

## Expected Result

```bash

elif choice == "99":
with open(configFile, 'wb') as configfile:
config.write(configfile)
sys.exit()
```

Should be writing to the config file
## Actual Result
Throws this error in console :
```bash
TypeError: a bytes-like object is required, not 'str'
```
Quick fix :

```bash

elif choice == "99":
sys.exit()
```

Empty file modified docs/fonts/MR ROBOT.ttf
100755 → 100644
Empty file.
2 changes: 1 addition & 1 deletion fsociety.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
agreement = false
toolDir = tools/
logDir = logs/
yes = yes y ye ya yep yeah yee yeperoo not-no
yes = yes y ye ya yep yeah yee yeperoo not-no
Loading