From c856fdace3ce46e9d484cb69948cc8213e7717d9 Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Mon, 14 May 2012 14:43:47 +0530 Subject: [PATCH] Install paramiko as a dependency, don't complain about the requirement --- tools/marvin/setup.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/marvin/setup.py b/tools/marvin/setup.py index d85950fc54e..aa69738d50c 100644 --- a/tools/marvin/setup.py +++ b/tools/marvin/setup.py @@ -8,12 +8,7 @@ from sys import version if version < "2.7": print "Marvin needs at least python 2.7, found : \n%s"%version -else: - try: - import paramiko - except ImportError: - print "Marvin requires paramiko to be installed" - raise + raise setup(name="Marvin", version="0.1.0",