Skip to content

Commit

Permalink
fixed debug logging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JessicaTegner committed Apr 9, 2024
1 parent af0ba53 commit 127fc04
Show file tree
Hide file tree
Showing 4 changed files with 134 additions and 150 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,27 @@ bot.run()
You can find the full documentation [here](http://teamtalkpy.readthedocs.io/en/latest)



## Troubleshooting

#### Erro when downloading the teamtalk sdk


```
Error: patoolib.util.PatoolError: could not find an executable program to extract format 7z; candidates are (7z,7za,7zr,unar),
```

Solution:

```
$ sudo apt install p7zip-full
```

Explanation:

The error is caused by the fact that the `patool` library requires a program to extract 7z files. The error message lists the programs it tried to use, and the solution is to install one of them. In this case, `p7zip-full` is a good choice.


## Contributing

So you want to contribute to teamtalk.py? Great! There are many ways to contribute to this project, and all contributions are welcome.
Expand Down
10 changes: 10 additions & 0 deletions docs/whats-new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ This document holds a human-readable list of changes between releases.
For more information on SemVer, please visit http://semver.org/.


version: 1.3.0 - unreleased
---------------------------------

Fixed
~~~~~

- Fixed a bug that would force debug logging to be enabled globally.



:version:`1.2.0` - 2024-01-31
---------------------------------

Expand Down
Loading

0 comments on commit 127fc04

Please sign in to comment.