blob: 52307be7ec871d248ba75e9e78da1f918dc26329 [file] [log] [blame]
Allen Li5ed7e632017-02-03 16:31:33 -08001# Copyright 2017 The Chromium OS Authors. All rights reserved.
Chris Masone6a0680f2012-03-02 08:40:00 -08002# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
J. Richard Barnette3cbd76b2013-11-27 12:11:25 -08004
Allen Li5ed7e632017-02-03 16:31:33 -08005"""This module is a hack for backward compatibility.
Chris Masone6a0680f2012-03-02 08:40:00 -08006
Allen Li5ed7e632017-02-03 16:31:33 -08007The real utils module is utils.py
8"""
Simran Basiaf9b8e72012-10-12 15:02:36 -07009
Allen Li5ed7e632017-02-03 16:31:33 -080010import warnings
Simran Basiaf9b8e72012-10-12 15:02:36 -070011
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 *
Dan Shi42ffd3d2016-01-28 13:55:23 -080017
Allen Lic63d07c2017-04-27 14:46:09 -070018warnings.warn(deprecation.APIDeprecationWarning(__name__), stacklevel=2)