forked from josch/img2pdf
fix --viewer-initial-page (broken in last release)
This commit is contained in:
parent
6ff175d637
commit
a8fdbd0038
1 changed files with 1 additions and 1 deletions
|
@ -3937,7 +3937,7 @@ and left/right, respectively. It is not possible to specify asymmetric borders.
|
|||
# On windows, each positional argument can expand into multiple paths
|
||||
# because we do globbing ourselves. Here we flatten the list of lists
|
||||
# again.
|
||||
images = chain.from_iterable(args.images)
|
||||
images = list(chain.from_iterable(args.images))
|
||||
elif len(args.images) == 0 and len(args.from_file) > 0:
|
||||
images = args.from_file
|
||||
|
||||
|
|
Loading…
Reference in a new issue