From e9d0504ca24290d2cc86ef14b2b7a62e4ec7b37c Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Tue, 29 Sep 2020 18:35:12 -0500 Subject: [PATCH] Put in place a shim for pytools.log --- pytools/log.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pytools/log.py diff --git a/pytools/log.py b/pytools/log.py new file mode 100644 index 0000000..6cb15ec --- /dev/null +++ b/pytools/log.py @@ -0,0 +1,8 @@ +from warnings import warn + +warn("pytools.log was moved to https://github.com/illinois-ceesd/logpyle/. " + "I will try to import that for you. If the import fails, say " + "'pip install logpyle', and change your imports from 'pytools.log' " + "to 'logpyle'.", DeprecationWarning) + +from logpyle import * # noqa -- GitLab