Skip to content

Commit

Permalink
Update filesig.py
Browse files Browse the repository at this point in the history
  • Loading branch information
peppelinux authored May 19, 2020
1 parent 168457c commit e85252e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions filesig/filesig.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
stderr = subprocess.PIPE)
stdout, stderr = proc_pdfsig.communicate()
if stderr:
print(stdout)
print(stderr)
print(stdout.decode())
print(stderr.decode())
raise Exception(('pdfsig is not installed.'
'Please install poppler or poppler-utils'))

Expand All @@ -27,8 +27,8 @@
stderr = subprocess.PIPE)
stdout, stderr = proc_openssl.communicate()
if stderr:
print(stdout)
print(stderr)
print(stdout.decode())
print(stderr.decode())
raise Exception(('openssl is not installed.'
'Please install it'))

Expand Down

0 comments on commit e85252e

Please sign in to comment.