1
0
mirror of https://github.com/python-escpos/python-escpos synced 2025-09-13 09:09:58 +00:00

Fixed lack of spacing for multi-line strings (#619)

Co-authored-by: Wes Appler <wes@lamemakes>
This commit is contained in:
Wesley Appler
2024-01-11 06:35:03 -05:00
committed by GitHub
parent 776b8a26ad
commit a865b715f3
5 changed files with 9 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ def dependency_linux_lp(func):
"""Throw a RuntimeError if not on a non-Windows system."""
if not is_usable():
raise RuntimeError(
"This printer driver depends on LP which is not"
"This printer driver depends on LP which is not "
"available on Windows systems."
)
return func(*args, **kwargs)