From 0026e2618212ca1b4c67ca09f2f2e89c88f562d6 Mon Sep 17 00:00:00 2001 From: Sandrine Avakian Date: Tue, 24 Sep 2013 11:20:05 +0200 Subject: [PATCH] Adding missing import. --- testbeds/iotlab/tests/sfi_client_tests.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/testbeds/iotlab/tests/sfi_client_tests.py b/testbeds/iotlab/tests/sfi_client_tests.py index 57c603f1..9358dce0 100755 --- a/testbeds/iotlab/tests/sfi_client_tests.py +++ b/testbeds/iotlab/tests/sfi_client_tests.py @@ -1,5 +1,5 @@ #!/usr/bin/env python - +import sys import os from sfa.iotlab.LDAPapi import LDAPapi from difflib import SequenceMatcher @@ -9,10 +9,11 @@ def parse_options(): #arguments supplied if len(sys.argv) > 1 : options_list = sys.argv[1:] + print options_list rspec_rep = options_list[0] return rspec_rep else: - print "Must supply Rspecs directory" + print "Must supply Rspecs directory ", sys.argv[1:] return -- 2.43.0