Browse Source

Merge pull request #1689 from kwoodson/yedit_header_fix

Fixed header for yedit
Kenny Woodson 9 years ago
parent
commit
9451e288a7

+ 1 - 1
roles/lib_openshift_api/build/generate.py

@@ -6,7 +6,7 @@
 import os
 
 # pylint: disable=anomalous-backslash-in-string
-GEN_STR = "#!usr/bin/env python\n"                                   + \
+GEN_STR = "#!/usr/bin/env python\n"                                   + \
           "#     ___ ___ _  _ ___ ___    _ _____ ___ ___\n"          + \
           "#    / __| __| \| | __| _ \  /_\_   _| __|   \\\n"        + \
           "#   | (_ | _|| .` | _||   / / _ \| | | _|| |) |\n"        + \

+ 1 - 1
roles/lib_openshift_api/library/oc_obj.py

@@ -1,4 +1,4 @@
-#!usr/bin/env python
+#!/usr/bin/env python
 #     ___ ___ _  _ ___ ___    _ _____ ___ ___
 #    / __| __| \| | __| _ \  /_\_   _| __|   \
 #   | (_ | _|| .` | _||   / / _ \| | | _|| |) |

+ 1 - 1
roles/lib_openshift_api/library/oc_secret.py

@@ -1,4 +1,4 @@
-#!usr/bin/env python
+#!/usr/bin/env python
 #     ___ ___ _  _ ___ ___    _ _____ ___ ___
 #    / __| __| \| | __| _ \  /_\_   _| __|   \
 #   | (_ | _|| .` | _||   / / _ \| | | _|| |) |

+ 1 - 1
roles/lib_yaml_editor/build/generate.py

@@ -6,7 +6,7 @@
 import os
 
 # pylint: disable=anomalous-backslash-in-string
-GEN_STR = "#!usr/bin/env python\n"                                   + \
+GEN_STR = "#!/usr/bin/env python\n"                                  + \
           "#     ___ ___ _  _ ___ ___    _ _____ ___ ___\n"          + \
           "#    / __| __| \| | __| _ \  /_\_   _| __|   \\\n"        + \
           "#   | (_ | _|| .` | _||   / / _ \| | | _|| |) |\n"        + \

+ 1 - 1
roles/lib_yaml_editor/library/yedit.py

@@ -1,4 +1,4 @@
-#!usr/bin/env python
+#!/usr/bin/env python
 #     ___ ___ _  _ ___ ___    _ _____ ___ ___
 #    / __| __| \| | __| _ \  /_\_   _| __|   \
 #   | (_ | _|| .` | _||   / / _ \| | | _|| |) |