diff options
Diffstat (limited to 'dev-python/stapler/files/stapler-1.0.0_p20220330-fix-tests-for-PyPDF2-2.x.patch')
-rw-r--r-- | dev-python/stapler/files/stapler-1.0.0_p20220330-fix-tests-for-PyPDF2-2.x.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev-python/stapler/files/stapler-1.0.0_p20220330-fix-tests-for-PyPDF2-2.x.patch b/dev-python/stapler/files/stapler-1.0.0_p20220330-fix-tests-for-PyPDF2-2.x.patch new file mode 100644 index 000000000000..125b06a7735a --- /dev/null +++ b/dev-python/stapler/files/stapler-1.0.0_p20220330-fix-tests-for-PyPDF2-2.x.patch @@ -0,0 +1,13 @@ +diff --git a/staplelib/tests.py b/staplelib/tests.py +index 4d59153..447d48a 100755 +--- a/staplelib/tests.py ++++ b/staplelib/tests.py +@@ -5,7 +5,7 @@ import shutil + import tempfile + import unittest + +-from PyPDF2.pdf import PdfFileReader ++from PyPDF2 import PdfFileReader + + from staplelib import main, CommandError + |