1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 00:18:50 +02:00

Use python2 instead of python in arc anoid shebang`

Summary:
With the old shebang of `#!/usr/bin/env python` on machines with python 3 as the default python it would fail.
Prefer an explicit python2 like PEP 394 suggests.

Test Plan: ran ./arc anoid and played a game

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D15408
This commit is contained in:
Eitan Adler 2016-03-05 14:29:46 -08:00 committed by epriestley
parent 3876d93583
commit 604ceb4fe5

View file

@ -1,9 +1,9 @@
#!/usr/bin/env python
#!/usr/bin/env python2
import sys
import time
import select
import curses
import curses.wrapper
from curses import wrapper
entities = []
grid = []
@ -217,4 +217,4 @@ try:
print ('You destroyed %s blocks out of %s with %s deaths.' %
(Block.killed, Block.total, Ball.killed))
except PowerOverwhelmingException as e:
print e
print (e)