Fix for older Python

This commit is contained in:
Nemo 2021-07-16 17:05:27 +05:30
parent 3ea18ff01b
commit dd8129aa2d
3 changed files with 13 additions and 4 deletions

View File

@ -2,6 +2,14 @@
Changelog
=========
Version 1.0.3
=============
- Added tests and code coverage
- PDFs can be directly fetched from Remote URLs
- PDFs can be filtered to have start and end pages
- Support for Python 3.6-3.8
- Removed --cleanup argument, since that is default
Version 1.0.2
=============
- Adds support for rotating PDFs

View File

@ -52,9 +52,10 @@ def parse_args(args):
)
parser.add_argument(
'--cleanup',
action=argparse.BooleanOptionalAction,
'--no-cleanup',
action='store_false',
default=True,
dest='cleanup',
help="Delete temporary files"
)

View File

@ -11,5 +11,5 @@ def test_loglevel():
assert args.loglevel == logging.INFO
def test_cleanup():
args = parse_args(['--cleanup', 'tests/book-clean.md', 'o.pdf'])
assert args.cleanup == True
args = parse_args(['--no-cleanup', 'tests/book-clean.md', 'o.pdf'])
assert args.cleanup == False