commit 6081b79146892749b47fb44451be93f4f790633d
parent 639963548e9c360b0a6409e243f80c43e9c3a3b8
Author: Antoine Amarilli <a3nm@a3nm.net>
Date: Tue, 27 Dec 2011 21:02:10 +0100
fix shebangs
Diffstat:
8 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/common.py b/common.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/python
#coding: utf-8
import unicodedata
diff --git a/db_mysql.py b/db_mysql.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3 -O
+#!/usr/bin/python -O
import MySQLdb
import MySQLdb.cursors
diff --git a/db_sqlite.py b/db_sqlite.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3 -O
+#!/usr/bin/python -O
import sqlite3
import os
diff --git a/drime.py b/drime.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3 -O
+#!/usr/bin/python -O
import query
from flask import Flask, render_template, request, jsonify
diff --git a/lexique2sql.py b/lexique2sql.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3 -O
+#!/usr/bin/python -O
"""Prepare the rhyme database
diff --git a/query.py b/query.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3 -O
+#!/usr/bin/python -O
import sys
import operator
diff --git a/reorder.py b/reorder.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3 -O
+#!/usr/bin/python -O
# TODO test "suis", "lui"... no multiple interpretations!
# TODO assonance
diff --git a/vowels.py b/vowels.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/python
#coding: utf-8
"""Compute the number of syllabes taken by a vowel chunk"""