diff --git a/src/calibre/ebooks/pml/input.py b/src/calibre/ebooks/pml/input.py index 36a9e3b526..a3dbc98568 100644 --- a/src/calibre/ebooks/pml/input.py +++ b/src/calibre/ebooks/pml/input.py @@ -69,7 +69,7 @@ class PMLInput(InputFormatPlugin): imgs = glob.glob(os.path.join(tdir, '*.png')) for img in imgs: pimg_name = os.path.basename(img) - pimg_path = os.path.join(os.getcwd(), pimg_name) + pimg_path = os.path.join(os.getcwd(), 'images', pimg_name) images.append(pimg_name)