Skip to content

Commit 59fdd0f

Browse files
committed
Remove python2 shebangs
1 parent 2d9689c commit 59fdd0f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ install:
1717
- pip install -r requirements.txt
1818
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then pip install --no-binary lxml html5-parser; fi
1919

20-
script: ./setup.py test
20+
script: python setup.py test

mechanize/_entities.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
# vim:fileencoding=utf-8
33
# License: BSD Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
44

mechanize/_equiv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
# vim:fileencoding=utf-8
33
# License: BSD Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
44

mechanize/_form_controls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
# vim:fileencoding=utf-8
33
from __future__ import absolute_import
44

mechanize/polyglot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
# vim:fileencoding=utf-8
33
# License: GPLv3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>
44

publish.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
# vim:fileencoding=utf-8
33
# License: BSD Copyright: 2017, Kovid Goyal <kovid at kovidgoyal.net>
44

run_tests.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22

33
"""
44
Note that the functional tests and doctests require test-tools to be on

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python
22
"""Stateful programmatic web browsing.
33
44
Stateful programmatic web browsing, after Andy Lester's Perl module

0 commit comments

Comments
 (0)