1 # Copyright 2017 The Chromium OS Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 3 # found in the LICENSE file. 4 5 """This module is a hack for backward compatibility. 6 7 The real utils module is utils.py 8 """ 9 10 import warnings 11 12 import common 13 from autotest_lib.client.common_lib import deprecation 14 15 # pylint: disable=wildcard-import,unused-wildcard-import,redefined-builtin 16 from .utils import * 17 18 warnings.warn(deprecation.APIDeprecationWarning(__name__), stacklevel=2) 19