Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed signal import on win32 #67

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions certstream/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import sys
import termcolor

from signal import signal, SIGPIPE, SIG_DFL

import certstream

parser = argparse.ArgumentParser(description='Connect to the CertStream and process CTL list updates.')
Expand All @@ -21,7 +19,9 @@ def main():
args = parser.parse_args()

# Ignore broken pipes
signal(SIGPIPE, SIG_DFL)
if not sys.platform.startswith("win32"):
from signal import signal, SIGPIPE, SIG_DFL
signal(SIGPIPE, SIG_DFL)

log_level = logging.INFO
if args.verbose:
Expand Down