1
0
mirror of https://github.com/nvbn/thefuck.git synced 2024-10-06 02:41:10 +01:00

#685: Warn about Python 2 only on Python 2

This commit is contained in:
Vladimir Iakovlev 2017-08-29 09:39:24 +02:00
parent e5255c3278
commit 7a0db1899c

View File

@ -52,8 +52,9 @@ def main():
elif known_args.command:
fix_command(known_args)
elif known_args.alias:
warn("The Fuck will drop Python 2 support soon, more details "
"https://github.com/nvbn/thefuck/issues/685")
if six.PY2:
warn("The Fuck will drop Python 2 support soon, more details "
"https://github.com/nvbn/thefuck/issues/685")
if known_args.enable_experimental_instant_mode:
if six.PY2: