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	Wed Jun 12 18:32:35 2013 +0200
+++ b/anmviewer	Sat Jun 22 23:16:03 2013 +0200
@@ -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	Wed Jun 12 18:32:35 2013 +0200
+++ b/data/ST/Makefile	Sat Jun 22 23:16:03 2013 +0200
@@ -57,11 +57,11 @@
 
 
 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	Wed Jun 12 18:32:35 2013 +0200
+++ b/eosd	Sat Jun 22 23:16:03 2013 +0200
@@ -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	Wed Jun 12 18:32:35 2013 +0200
+++ b/music.py	Sat Jun 22 23:16:03 2013 +0200
@@ -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	Wed Jun 12 18:32:35 2013 +0200
+++ b/pcb	Sat Jun 22 23:16:03 2013 +0200
@@ -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	Wed Jun 12 18:32:35 2013 +0200
+++ b/pytouhou/ui/anmrenderer.py	Sat Jun 22 23:16:03 2013 +0200
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # -*- encoding: utf-8 -*-
 ##
 ## Copyright (C) 2011 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>