Fix broken imports on iperf

Summary: The client/bin/autotest_utils.py rename required a fairly large
patch to fix out the tests due to the API breakage. This patch fixes a
broken import leftover from the process.

Visibility: Small (only users of the iperf test)

Impact: Small (only users of the iperf test, small fix)

Signed-off-by: Lucas Meneghel Rodrigues <lucasmr@br.ibm.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@2633 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/iperf/iperf.py b/client/tests/iperf/iperf.py
index 5e054f4..efa12db 100644
--- a/client/tests/iperf/iperf.py
+++ b/client/tests/iperf/iperf.py
@@ -1,6 +1,6 @@
 import os, re, socket, time
-from autotest_lib.client.bin import test, autotest_utils
-from autotest_lib.client.common_lib import utils, error
+from autotest_lib.client.bin import test, utils
+from autotest_lib.client.common_lib import error
 
 
 class iperf(test.test):