aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Rodriguez <ruben@trisquel.info>2015-06-22 12:50:09 -0500
committerRuben Rodriguez <ruben@trisquel.info>2015-06-26 10:06:36 -0500
commitcd561ea6e01c01f28ca5182a25493b7640eb59a9 (patch)
tree5a13dc9941f531bb88d7dbbc97807c52aa1424a9
parentc40fd5b88195ac92047a618b31263f34a6e73598 (diff)
Added shebangs and utf8 encoding headers
-rw-r--r--export.py3
-rw-r--r--export_json.py2
-rw-r--r--json_to_wiki.py2
-rw-r--r--license.py2
-rw-r--r--license_summary.py3
-rw-r--r--load_copyright.py2
-rw-r--r--load_descriptions.py2
-rw-r--r--load_packages.py2
-rw-r--r--pkg_summary.py2
-rwxr-xr-xtest.py1
10 files changed, 20 insertions, 1 deletions
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