From cd561ea6e01c01f28ca5182a25493b7640eb59a9 Mon Sep 17 00:00:00 2001 From: Ruben Rodriguez Date: Mon, 22 Jun 2015 12:50:09 -0500 Subject: Added shebangs and utf8 encoding headers --- export.py | 3 ++- export_json.py | 2 ++ json_to_wiki.py | 2 ++ license.py | 2 ++ license_summary.py | 3 +++ load_copyright.py | 2 ++ load_descriptions.py | 2 ++ load_packages.py | 2 ++ pkg_summary.py | 2 ++ test.py | 1 + 10 files changed, 20 insertions(+), 1 deletion(-) diff --git a/export.py b/export.py index a50894d..bbea75e 100644 --- a/export.py +++ b/export.py @@ -1,4 +1,5 @@ -# encoding: utf8 +#!/usr/bin/env python +# -*- coding: utf-8 -*- import datetime import itertools diff --git a/export_json.py b/export_json.py index 370b5fe..0ba10d6 100644 --- a/export_json.py +++ b/export_json.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import json import sys diff --git a/json_to_wiki.py b/json_to_wiki.py index b62d320..e5e91f9 100644 --- a/json_to_wiki.py +++ b/json_to_wiki.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import json import sys diff --git a/license.py b/license.py index 91392e6..7a66a3e 100644 --- a/license.py +++ b/license.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- class License(object): def __init__(self, name): diff --git a/license_summary.py b/license_summary.py index e5edaba..177e756 100644 --- a/license_summary.py +++ b/license_summary.py @@ -1,3 +1,6 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- + # summary of the License: fields found in Files: clauses import pandas as pd diff --git a/load_copyright.py b/load_copyright.py index 026f862..580da8c 100644 --- a/load_copyright.py +++ b/load_copyright.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import os import sys diff --git a/load_descriptions.py b/load_descriptions.py index 14d0ee4..f8e2ecf 100644 --- a/load_descriptions.py +++ b/load_descriptions.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import sys diff --git a/load_packages.py b/load_packages.py index e16c90e..0209b59 100644 --- a/load_packages.py +++ b/load_packages.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import sys diff --git a/pkg_summary.py b/pkg_summary.py index a700c65..e262a41 100644 --- a/pkg_summary.py +++ b/pkg_summary.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- import pandas as pd diff --git a/test.py b/test.py index cbe79d6..a59f33b 100755 --- a/test.py +++ b/test.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- import os -- cgit v1.2.3