blob: 52307be7ec871d248ba75e9e78da1f918dc26329 [file] [log] [blame]
Allen Li5ed7e632017-02-03 16:31:33 -08001# 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.
Eric Li861b2d52011-02-04 14:50:35 -08004
Allen Li5ed7e632017-02-03 16:31:33 -08005"""This module is a hack for backward compatibility.
Aviv Keshet7234d542013-08-27 12:11:31 -07006
Allen Li5ed7e632017-02-03 16:31:33 -08007The real utils module is utils.py
8"""
9
Filipe Brandenburger39c11802015-08-24 16:19:15 -070010import warnings
11
Allen Lic63d07c2017-04-27 14:46:09 -070012import common
13from autotest_lib.client.common_lib import deprecation
14
15# pylint: disable=wildcard-import,unused-wildcard-import,redefined-builtin
Allen Li5ed7e632017-02-03 16:31:33 -080016from .utils import *
Filipe Brandenburger39c11802015-08-24 16:19:15 -070017
Allen Lic63d07c2017-04-27 14:46:09 -070018warnings.warn(deprecation.APIDeprecationWarning(__name__), stacklevel=2)