File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1414# NOTE(dtroyer): This file is deprecated in Jun 2016, remove after 4.x release
1515# or Jun 2017.
1616
17+ import inspect
1718import sys
1819
1920from osc_lib .api .auth import * # noqa
2021
2122
23+ parent_import = inspect .getouterframes (inspect .currentframe ())[1 ][1 ]
2224sys .stderr .write (
2325 "WARNING: %s is deprecated and will be removed after Jun 2017. "
24- "Please use osc_lib.api.auth\n " % __name__
26+ "Please use osc_lib.api.auth. This warning is caused by an "
27+ "out-of-date import in %s\n " % (__name__ , parent_import )
2528)
Original file line number Diff line number Diff line change 1515# NOTE(dtroyer): This file is deprecated in Jun 2016, remove after 4.x release
1616# or Jun 2017.
1717
18+ import inspect
1819import sys
1920
2021from osc_lib .command .command import * # noqa
2122
2223
24+ parent_import = inspect .getouterframes (inspect .currentframe ())[1 ][1 ]
2325sys .stderr .write (
2426 "WARNING: %s is deprecated and will be removed after Jun 2017. "
25- "Please use osc_lib.command.command\n " % __name__
27+ "Please use osc_lib.command.command. This warning is caused by an "
28+ "out-of-date import in %s\n " % (__name__ , parent_import )
2629)
Original file line number Diff line number Diff line change 1414# NOTE(dtroyer): This file is deprecated in Jun 2016, remove after 4.x release
1515# or Jun 2017.
1616
17+ import inspect
1718import sys
1819
1920from osc_lib .exceptions import * # noqa
2021
2122
23+ parent_import = inspect .getouterframes (inspect .currentframe ())[1 ][1 ]
2224sys .stderr .write (
2325 "WARNING: %s is deprecated and will be removed after Jun 2017. "
24- "Please use osc_lib.exceptions\n " % __name__
26+ "Please use osc_lib.exceptions. This warning is caused by an "
27+ "out-of-date import in %s\n " % (__name__ , parent_import )
2528)
Original file line number Diff line number Diff line change 1414# NOTE(dtroyer): This file is deprecated in Jun 2016, remove after 4.x release
1515# or Jun 2017.
1616
17+ import inspect
1718import sys
1819
1920from osc_lib .logs import * # noqa
2021from osc_lib .logs import _FileFormatter # noqa
2122
2223
24+ parent_import = inspect .getouterframes (inspect .currentframe ())[1 ][1 ]
2325sys .stderr .write (
2426 "WARNING: %s is deprecated and will be removed after Jun 2017. "
25- "Please use osc_lib.logs\n " % __name__
27+ "Please use osc_lib.logs. This warning is caused by an "
28+ "out-of-date import in %s\n " % (__name__ , parent_import )
2629)
Original file line number Diff line number Diff line change 1414# NOTE(dtroyer): This file is deprecated in Jun 2016, remove after 4.x release
1515# or Jun 2017.
1616
17+ import inspect
1718import sys
1819
1920from osc_lib .cli .parseractions import * # noqa
2021
2122
23+ parent_import = inspect .getouterframes (inspect .currentframe ())[1 ][1 ]
2224sys .stderr .write (
2325 "WARNING: %s is deprecated and will be removed after Jun 2017. "
24- "Please use osc_lib.cli.parseractions\n " % __name__
26+ "Please use osc_lib.cli.parseractions. This warning is caused by an "
27+ "out-of-date import in %s\n " % (__name__ , parent_import )
2528)
Original file line number Diff line number Diff line change 1414# NOTE(dtroyer): This file is deprecated in Jun 2016, remove after 4.x release
1515# or Jun 2017.
1616
17+ import inspect
1718import sys
1819
1920from osc_lib .command .timing import * # noqa
2021
2122
23+ parent_import = inspect .getouterframes (inspect .currentframe ())[1 ][1 ]
2224sys .stderr .write (
2325 "WARNING: %s is deprecated and will be removed after Jun 2017. "
24- "Please use osc_lib.command.timing\n " % __name__
26+ "Please use osc_lib.command.timing. This warning is caused by an "
27+ "out-of-date import in %s\n " % (__name__ , parent_import )
2528)
Original file line number Diff line number Diff line change 1414# NOTE(dtroyer): This file is deprecated in Jun 2016, remove after 4.x release
1515# or Jun 2017.
1616
17+ import inspect
1718import sys
1819
1920from osc_lib .utils import * # noqa
2021
2122
23+ parent_import = inspect .getouterframes (inspect .currentframe ())[1 ][1 ]
2224sys .stderr .write (
2325 "WARNING: %s is deprecated and will be removed after Jun 2017. "
24- "Please use osc_lib.utils\n " % __name__
26+ "Please use osc_lib.utils. This warning is caused by an "
27+ "out-of-date import in %s\n " % (__name__ , parent_import )
2528)
You can’t perform that action at this time.
0 commit comments