From f709faf99244c03fda0402d21e04578c31af8232 Mon Sep 17 00:00:00 2001 From: Thomas Mansencal Date: Thu, 15 Jan 2015 17:51:51 +0100 Subject: [PATCH] Add shebang to modules. --- aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py | 3 +++ aces_1.0.0/python/aces_ocio/createCanonColorSpaces.py | 3 +++ aces_1.0.0/python/aces_ocio/createREDColorSpaces.py | 3 +++ aces_1.0.0/python/aces_ocio/createSonyColorSpaces.py | 3 +++ aces_1.0.0/python/aces_ocio/create_aces_config.py | 3 +++ aces_1.0.0/python/aces_ocio/generateLUT.py | 3 +++ aces_1.0.0/python/aces_ocio/process.py | 3 ++- aces_1.0.0/python/aces_ocio/util.py | 3 +++ 8 files changed, 23 insertions(+), 1 deletion(-) diff --git a/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py b/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py index 649c8d4..ad959d0 100644 --- a/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py +++ b/aces_1.0.0/python/aces_ocio/createARRIColorSpaces.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + import math import array diff --git a/aces_1.0.0/python/aces_ocio/createCanonColorSpaces.py b/aces_1.0.0/python/aces_ocio/createCanonColorSpaces.py index 4d4b05c..d782295 100644 --- a/aces_1.0.0/python/aces_ocio/createCanonColorSpaces.py +++ b/aces_1.0.0/python/aces_ocio/createCanonColorSpaces.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + import array import aces_ocio.generateLUT as genlut diff --git a/aces_1.0.0/python/aces_ocio/createREDColorSpaces.py b/aces_1.0.0/python/aces_ocio/createREDColorSpaces.py index 3619dc3..934fec5 100644 --- a/aces_1.0.0/python/aces_ocio/createREDColorSpaces.py +++ b/aces_1.0.0/python/aces_ocio/createREDColorSpaces.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + import array import aces_ocio.generateLUT as genlut diff --git a/aces_1.0.0/python/aces_ocio/createSonyColorSpaces.py b/aces_1.0.0/python/aces_ocio/createSonyColorSpaces.py index 9345d09..c1e1bb3 100644 --- a/aces_1.0.0/python/aces_ocio/createSonyColorSpaces.py +++ b/aces_1.0.0/python/aces_ocio/createSonyColorSpaces.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + import array import aces_ocio.generateLUT as genlut diff --git a/aces_1.0.0/python/aces_ocio/create_aces_config.py b/aces_1.0.0/python/aces_ocio/create_aces_config.py index d0bb606..72ac0d3 100755 --- a/aces_1.0.0/python/aces_ocio/create_aces_config.py +++ b/aces_1.0.0/python/aces_ocio/create_aces_config.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + ''' usage from python diff --git a/aces_1.0.0/python/aces_ocio/generateLUT.py b/aces_1.0.0/python/aces_ocio/generateLUT.py index 9a2e3fc..0fd8c50 100644 --- a/aces_1.0.0/python/aces_ocio/generateLUT.py +++ b/aces_1.0.0/python/aces_ocio/generateLUT.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + ''' build instructions for osx for needed packages. diff --git a/aces_1.0.0/python/aces_ocio/process.py b/aces_1.0.0/python/aces_ocio/process.py index 17347ee..766a5c8 100755 --- a/aces_1.0.0/python/aces_ocio/process.py +++ b/aces_1.0.0/python/aces_ocio/process.py @@ -1,4 +1,5 @@ -#!/usr/bin/python2.6 +#!/usr/bin/env python +# -*- coding: utf-8 -*- '''A process wrapper class that maintains the text output and execution status of a process or a list of other process wrappers which carry such data.''' diff --git a/aces_1.0.0/python/aces_ocio/util.py b/aces_1.0.0/python/aces_ocio/util.py index f525d11..fde3ef6 100644 --- a/aces_1.0.0/python/aces_ocio/util.py +++ b/aces_1.0.0/python/aces_ocio/util.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + import os import re -- 1.7.10.4