Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pip imports fix & line 184-185 writeconfig fix #173

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
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