瀏覽代碼

Merge pull request #66 from lhuard1A/explicit_python2

Explicitely use python2
Thomas Wiest 10 年之前
父節點
當前提交
c37deb3723
共有 6 個文件被更改,包括 6 次插入6 次删除
  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