From 00dd5a48317ff2f15c498b6ee405d17054088e53 Mon Sep 17 00:00:00 2001 From: AyushPaudel Date: Sat, 25 Jan 2025 11:13:59 +0545 Subject: [PATCH] Fix typo --- pdfkit/pdfkit.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdfkit/pdfkit.py b/pdfkit/pdfkit.py index 88b3c92..1315b4c 100644 --- a/pdfkit/pdfkit.py +++ b/pdfkit/pdfkit.py @@ -207,12 +207,12 @@ def to_pdf(self, path=None): text = f.read(4) if text == '': raise IOError('Command failed: %s\n' - 'Check whhtmltopdf output without \'quiet\' ' + 'Check wkhtmltopdf output without \'quiet\' ' 'option' % ' '.join(args)) return True except (IOError, OSError) as e: raise IOError('Command failed: %s\n' - 'Check whhtmltopdf output without \'quiet\' option\n' + 'Check wkhtmltopdf output without \'quiet\' option\n' '%s ' % (' '.join(args), e)) def _normalize_options(self, options):