From c7cee60da3f740e8ea845164d71e3e4052196cee Mon Sep 17 00:00:00 2001 From: Joey Payne Date: Sun, 27 Sep 2015 18:19:22 -0600 Subject: [PATCH] Fixed ssl context. --- command_line.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/command_line.py b/command_line.py index 089c4e6..9e6a6e1 100644 --- a/command_line.py +++ b/command_line.py @@ -2,6 +2,10 @@ __version__ = "v0.2.6b" +import ssl + +ssl._create_default_https_context = ssl._create_unverified_context + from utils import zip_files, join_files, log, get_temp_dir from pycns import save_icns from pepy.pe import PEFile @@ -52,7 +56,6 @@ else: def get_file(path): parts = path.split('/') independent_path = os.path.join(CWD, *parts) - print independent_path return independent_path TEMP_DIR = get_temp_dir()