Skip to content

Commit 3927bee

Browse files
committed
use shebang / python3
1 parent e88f96b commit 3927bee

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.travis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ install:
1616
- pip3 install pycrypto SQLAlchemy twisted pyOpenSSL GeoIP mysqlclient
1717

1818
script:
19-
- python3 protocol/Protocol.py
20-
- python3 ip2country.py
21-
- python3 ./SQLUsers.py
22-
- python3 ./server.py &
19+
- protocol/Protocol.py
20+
- ip2country.py
21+
- SQLUsers.py
22+
- ./server.py &
2323
- sleep 30 # wait for server to start up
24-
- python3 tests/TestLobbyClient.py
24+
- tests/TestLobbyClient.py
2525
- sleep 10 # give server some time to write log, etc
2626
- killall python

SQLUsers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
# -*- coding: utf-8 -*-
33

44
from datetime import datetime, timedelta

ip2country.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/python
1+
#!/usr/bin/python3
22
# coding=utf-8
33
# This file is part of the uberserver (GPL v2 or later), see LICENSE
44

0 commit comments

Comments
 (0)