Skip to content

Commit

Permalink
Finish the remaining migration of shebang to python3.
Browse files Browse the repository at this point in the history
  • Loading branch information
rht authored and showell committed Apr 3, 2020
1 parent 9ee8461 commit 204871b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion tools/deploy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from typing import Any, List, Dict, Callable

Expand Down
2 changes: 1 addition & 1 deletion tools/lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#! /usr/bin/env python
#! /usr/bin/env python3

from __future__ import print_function
from __future__ import absolute_import
Expand Down
2 changes: 1 addition & 1 deletion tools/review
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from __future__ import print_function
import subprocess
Expand Down
2 changes: 1 addition & 1 deletion tools/run-mypy
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from __future__ import absolute_import
from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion tools/test-botserver
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from server_lib.test_handler import handle_input_and_run_tests_for_package

Expand Down
2 changes: 1 addition & 1 deletion tools/test-lib
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from server_lib.test_handler import handle_input_and_run_tests_for_package

Expand Down
2 changes: 1 addition & 1 deletion tools/test-zulip
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3

from server_lib.test_handler import handle_input_and_run_tests_for_package

Expand Down
2 changes: 1 addition & 1 deletion zulip/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from __future__ import print_function
Expand Down
2 changes: 1 addition & 1 deletion zulip/zulip/api_examples.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import os
import zulip

Expand Down
2 changes: 1 addition & 1 deletion zulip/zulip/send.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# zulip-send -- Sends a message to the specified recipients.

Expand Down
2 changes: 1 addition & 1 deletion zulip_botserver/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

from __future__ import print_function
Expand Down

0 comments on commit 204871b

Please sign in to comment.