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 2c7f3d8 commit 168457c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions filesig/filesig.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@


proc_pdfsig = subprocess.Popen('pdfsig -v',
shell=True,
stdout = subprocess.PIPE,
stderr = subprocess.PIPE)
stdout, stderr = proc_pdfsig.communicate()
Expand All @@ -21,6 +22,7 @@
'Please install poppler or poppler-utils'))

proc_openssl = subprocess.Popen('openssl version',
shell=True,
stdout = subprocess.PIPE,
stderr = subprocess.PIPE)
stdout, stderr = proc_openssl.communicate()
Expand Down

0 comments on commit 168457c

Please sign in to comment.