mirror of
https://github.com/mkb79/audible-cli.git
synced 2025-04-18 20:04:53 -04:00
add freeze_support to pyinstaller entry script (#162)
* fix: add freeze_support to pyinstaller entryscript * docs: update CHANGELOG.md
This commit is contained in:
parent
275a2b2b77
commit
72b4ff916f
2 changed files with 11 additions and 2 deletions
|
@ -10,6 +10,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
|
||||
- Update marketplace choices in `manage auth-file add` command. Now all available marketplaces are listed.
|
||||
|
||||
### Misc
|
||||
|
||||
- add `freeze_support` to pyinstaller entry script (#78)
|
||||
|
||||
## [0.2.5] - 2022-09-26
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,4 +1,9 @@
|
|||
from audible_cli import cli
|
||||
import multiprocessing
|
||||
|
||||
|
||||
cli.main()
|
||||
multiprocessing.freeze_support()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from audible_cli import cli
|
||||
cli.main()
|
||||
|
|
Loading…
Add table
Reference in a new issue