Skip to content

pdfmerge.py takes in only the first file (in the list of input files specified) as target for merging #76

@ecsridhar

Description

@ecsridhar

python -i x1.pdf x2.pdf x3.pdf -o final.pdf
Considers only the first file x1.pdf as merge candidate and ignores the rest.

The current code is
input_files = [str(x) for x in args['input_files'][0].split(',')]
As a result even if args['input_files'] contains list of input_files, only first file is considered.

needs to be replaced with
input_files = args['input_files']

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions