remove vestigial python2 references

This commit is contained in:
Nicolas F 2019-07-24 09:20:49 +02:00
parent c13d3aae3c
commit 01f30de176
2 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ to stick to PEP8_ when writing new code. If you're refactoring old code, it
would be great if you were to fix it to make it PEP8 compliant as well.
To check whether the code is PEP8 compliant, you can use pycodestyle_. You can
easily install it with pip by using ``pip2 install pycodestyle``.
easily install it with pip by using ``pip3 install pycodestyle``.
.. _PEP8: https://www.python.org/dev/peps/pep-0008/
.. _pycodestyle: https://pypi.python.org/pypi/pycodestyle

View File

@ -1,4 +1,4 @@
#!/usr/bin/python2
#!/usr/bin/env python3
# -*- coding: iso-8859-1 -*-
#
# progressbar - Text progressbar library for python.