Commit 0fffb84a authored by Jason R. Coombs's avatar Jason R. Coombs

In the deprecation warning, acknowledge that it's only for projects that still...

In the deprecation warning, acknowledge that it's only for projects that still require Python 2 support.
parent b2865258
......@@ -36,9 +36,10 @@ class Mixin2to3(_Mixin2to3):
return
warnings.warn(
"2to3 support is deprecated. Please migrate to "
"a single-codebase solution or roll your own "
"conversion process.",
"2to3 support is deprecated. If the project still "
"requires Python 2 support, please migrate to "
"a single-codebase solution or employ an "
"independent conversion process.",
DeprecationWarning)
log.info("Fixing " + " ".join(files))
self.__build_fixer_names()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment