Browse Source

Merge pull request #66 from lhuard1A/explicit_python2

Explicitely use python2
Thomas Wiest 10 years ago
parent
commit
c37deb3723
6 changed files with 6 additions and 6 deletions
  1. 1 1
      bin/oscp
  2. 1 1
      bin/ossh
  3. 1 1
      inventory/aws/ec2.py
  4. 1 1
      inventory/gce/gce.py
  5. 1 1
      inventory/multi_ec2.py
  6. 1 1
      test/units/mutli_ec2_test.py

+ 1 - 1
bin/oscp

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # vim: expandtab:tabstop=4:shiftwidth=4
 
 import argparse

+ 1 - 1
bin/ossh

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # vim: expandtab:tabstop=4:shiftwidth=4
 
 import argparse

+ 1 - 1
inventory/aws/ec2.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 
 '''
 EC2 external inventory script

+ 1 - 1
inventory/gce/gce.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # Copyright 2013 Google Inc.
 #
 # This file is part of Ansible

+ 1 - 1
inventory/multi_ec2.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 # vim: expandtab:tabstop=4:shiftwidth=4
 
 from time import time

+ 1 - 1
test/units/mutli_ec2_test.py

@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python2
 
 import unittest
 import sys