Index: testing/android/generate_native_test.py |
diff --git a/testing/android/generate_native_test.py b/testing/android/generate_native_test.py |
index 6a6173d67f3908d2df4f0fa675ec35bc08181202..95b08b404bb94e8904b50a032fefd7707be2ef7a 100755 |
--- a/testing/android/generate_native_test.py |
+++ b/testing/android/generate_native_test.py |
@@ -1,4 +1,5 @@ |
-#!/usr/bin/python |
+#!/usr/bin/env python |
+# |
# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
@@ -24,7 +25,7 @@ import sys |
# cmd_helper.py is under ../../build/android/ |
sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', |
'..', 'build', 'android'))) |
-import cmd_helper # pylint: disable=F0401 |
+from pylib import cmd_helper # pylint: disable=F0401 |
class NativeTestApkGenerator(object): |