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
7The real utils module is utils.py
8"""
9
10import warnings
11
12import common
13from autotest_lib.client.common_lib import deprecation
14
15# pylint: disable=wildcard-import,unused-wildcard-import,redefined-builtin
16from .utils import *
17
18warnings.warn(deprecation.APIDeprecationWarning(__name__), stacklevel=2)
19