changeset 414:b0b8825296d0

Follow the PEP-0394 guidelines, migrating from python to python2.
author Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
date Sat, 22 Jun 2013 23:16:03 +0200
parents 6d7dbcb31d95
children 236bc32597f1
files anmviewer data/ST/Makefile eosd music.py pcb pytouhou/ui/anmrenderer.py
diffstat 6 files changed, 6 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/anmviewer
+++ b/anmviewer
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # -*- encoding: utf-8 -*-
 ##
 ## Copyright (C) 2011 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
--- a/data/ST/Makefile
+++ b/data/ST/Makefile
@@ -57,11 +57,11 @@ stg1enm2.anm: stg1enm2.script
 
 
 ecldata1.ecl: make_ecl.py
-	PYTHONPATH=../../ python make_ecl.py
+	PYTHONPATH=../../ python2 make_ecl.py
 
 
 stage1.std: make_stage.py
-	PYTHONPATH=../../ python make_stage.py
+	PYTHONPATH=../../ python2 make_stage.py
 
 
 msg1.dat: msg1.script
--- a/eosd
+++ b/eosd
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # -*- encoding: utf-8 -*-
 ##
 ## Copyright (C) 2011 Thibaut Girka <thib@sitedethib.com>
--- a/music.py
+++ b/music.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # -*- encoding: utf-8 -*-
 ##
 ## Copyright (C) 2012 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
--- a/pcb
+++ b/pcb
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # -*- encoding: utf-8 -*-
 ##
 ## Copyright (C) 2011 Thibaut Girka <thib@sitedethib.com>
--- a/pytouhou/ui/anmrenderer.py
+++ b/pytouhou/ui/anmrenderer.py
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- encoding: utf-8 -*-
 ##
 ## Copyright (C) 2011 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>