From 636ae17cc0025d7eeb1fe88b9f79ff5ff713a944 Mon Sep 17 00:00:00 2001 From: Peter Surda Date: Wed, 1 Mar 2017 11:44:58 +0100 Subject: [PATCH] setup.py fix and update - libssl dependency for Fedora - typo in waiting for keypress --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 77434a78..2c769a63 100644 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ packageName = { compiling = { "Debian": "build-essential libssl-dev", "Ubuntu": "build-essential libssl-dev", - "Fedora": "gcc-c++ redhat-rpm-config python-devel", + "Fedora": "gcc-c++ redhat-rpm-config python-devel openssl-devel", "openSUSE": "gcc-c++ libopenssl-devel python-devel", } @@ -162,7 +162,7 @@ if __name__ == "__main__": if detectPrereqs(True) != []: print "Press Return to continue" try: - nothing = raw_input + nothing = raw_input() except NameError: pass