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