---
 python/cmusphinx/classlm2fst.py       |    2 +-
 python/cmusphinx/cluster_mixw.py      |    2 +-
 python/cmusphinx/cmllr.py             |    2 +-
 python/cmusphinx/dict_spd.py          |    2 +-
 python/cmusphinx/fstutils.py          |    2 +-
 python/cmusphinx/lat2dot.py           |    2 +-
 python/cmusphinx/lat2fsg.py           |    2 +-
 python/cmusphinx/lat_rescore.py       |    2 +-
 python/cmusphinx/lat_rescore_fst.py   |    2 +-
 python/cmusphinx/lattice.py           |    2 +-
 python/cmusphinx/lattice_conv.py      |    2 +-
 python/cmusphinx/lattice_error.py     |    2 +-
 python/cmusphinx/lattice_error_fst.py |    2 +-
 python/cmusphinx/lattice_prune.py     |    2 +-
 python/cmusphinx/lda.py               |    2 +-
 python/cmusphinx/mllr.py              |    2 +-
 python/cmusphinx/mllt.py              |    2 +-
 python/cmusphinx/prune_mixw.py        |    2 +-
 python/cmusphinx/quantize_mixw.py     |    2 +-
 python/cmusphinx/s3senmgau.py         |    2 +-
 python/cmusphinx/sendump.py           |    2 +-
 scripts/0000.g2p_train/calculateER.py |    2 +-
 scripts/0000.g2p_train/evaluate.py    |    2 +-
 scripts/sphinxtrain                   |    2 +-
 24 files changed, 24 insertions(+), 24 deletions(-)

--- a/scripts/sphinxtrain
+++ b/scripts/sphinxtrain
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 from __future__ import print_function
 
--- a/python/cmusphinx/classlm2fst.py
+++ b/python/cmusphinx/classlm2fst.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Copyright (c) 2010  Carnegie Mellon University
 #
--- a/python/cmusphinx/cluster_mixw.py
+++ b/python/cmusphinx/cluster_mixw.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ====================================================================
 # Copyright (c) 2007-2009 Carnegie Mellon University.  All rights
--- a/python/cmusphinx/cmllr.py
+++ b/python/cmusphinx/cmllr.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Adapt acoustic models using constrained maximum-likelihood linear regression.
 
--- a/python/cmusphinx/dict_spd.py
+++ b/python/cmusphinx/dict_spd.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Copyright (c) 2009 Carnegie Mellon University
 #
--- a/python/cmusphinx/fstutils.py
+++ b/python/cmusphinx/fstutils.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Copyright (c) 2010  Carnegie Mellon University
 #
--- a/python/cmusphinx/lat2dot.py
+++ b/python/cmusphinx/lat2dot.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 
--- a/python/cmusphinx/lat2fsg.py
+++ b/python/cmusphinx/lat2fsg.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Copyright (c) 2010  Carnegie Mellon University
 #
--- a/python/cmusphinx/lat_rescore.py
+++ b/python/cmusphinx/lat_rescore.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Copyright (c) 2010  Carnegie Mellon University
 #
--- a/python/cmusphinx/lat_rescore_fst.py
+++ b/python/cmusphinx/lat_rescore_fst.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Copyright (c) 2010  Carnegie Mellon University
 #
--- a/python/cmusphinx/lattice_conv.py
+++ b/python/cmusphinx/lattice_conv.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 import math
--- a/python/cmusphinx/lattice_error_fst.py
+++ b/python/cmusphinx/lattice_error_fst.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Copyright (c) 2010  Carnegie Mellon University
 #
--- a/python/cmusphinx/lattice_prune.py
+++ b/python/cmusphinx/lattice_prune.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import os
 import sys
--- a/python/cmusphinx/lda.py
+++ b/python/cmusphinx/lda.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Calculate Fisher's linear discriminant for acoustic models.
 
--- a/python/cmusphinx/mllr.py
+++ b/python/cmusphinx/mllr.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Adapt acoustic models using maximum-likelihood linear regression.
 
--- a/python/cmusphinx/mllt.py
+++ b/python/cmusphinx/mllt.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 """
 Train maximum-likelihood linear transforms.
 
--- a/python/cmusphinx/prune_mixw.py
+++ b/python/cmusphinx/prune_mixw.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 import numpy
--- a/python/cmusphinx/quantize_mixw.py
+++ b/python/cmusphinx/quantize_mixw.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 __author__ = "David Huggins-Daines <dhdaines@gmail.com>"
 
--- a/python/cmusphinx/sendump.py
+++ b/python/cmusphinx/sendump.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 from cmusphinx import s3mixw
--- a/python/cmusphinx/lattice_error.py
+++ b/python/cmusphinx/lattice_error.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 import sys
 import os
--- a/scripts/0000.g2p_train/calculateER.py
+++ b/scripts/0000.g2p_train/calculateER.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Copyright (c) [2012-], Josef Robert Novak
 # All rights reserved.
--- a/scripts/0000.g2p_train/evaluate.py
+++ b/scripts/0000.g2p_train/evaluate.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 #
 # Copyright (c) [2012-], Josef Robert Novak
 # All rights reserved.
--- a/python/cmusphinx/lattice.py
+++ b/python/cmusphinx/lattice.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Copyright (c) 2007 Carnegie Mellon University
 #
--- a/python/cmusphinx/s3senmgau.py
+++ b/python/cmusphinx/s3senmgau.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # ====================================================================
 # Copyright (c) 2009 Carnegie Mellon University.  All rights
