summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Korbar <tkorbar@redhat.com>2020-01-31 13:30:52 +0100
committerDidier Raboud <odyx@debian.org>2021-09-03 08:36:53 +0200
commitccd0595604720130c7a5f34ffe8b107a2ea37d40 (patch)
tree07403a06d276e8c0bfbae46e5e55964fa3b054a7
parentde34a05cad120f6b24e4c3a183fee13d55a12726 (diff)
Fix TypeError in hpfax
Origin: https://src.fedoraproject.org/rpms/hplip/blob/master/f/hplip-hpfax-importerror-print.patch
-rwxr-xr-xfax/backend/hpfax.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/fax/backend/hpfax.py b/fax/backend/hpfax.py
index 2514e7858..95ff135ea 100755
--- a/fax/backend/hpfax.py
+++ b/fax/backend/hpfax.py
@@ -89,7 +89,7 @@ try:
from base import utils
#from prnt import cups
except ImportError as e:
- bug("Error importing HPLIP modules: %s\n" % (pid, e))
+ bug("Error importing HPLIP modules: %s\n" % (e))
sys.exit(1)
def handle_sigpipe():