1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-02-07 13:41:21 +00:00

#620: Fix python 2 support

This commit is contained in:
Vladimir Iakovlev 2017-03-28 12:08:32 +02:00
parent beda1854cf
commit 53c11d2ef4

View File

@ -124,6 +124,6 @@ def configured_successfully(configuration_details):
def version(thefuck_version, python_version): def version(thefuck_version, python_version):
print(u'The Fuck {} using Python {}'.format(thefuck_version, sys.stderr.write(
python_version), u'The Fuck {} using Python {}'.format(thefuck_version,
file=sys.stderr) python_version))