1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
From aceee5aba257433e569332d51f4f6556d7b3214f Mon Sep 17 00:00:00 2001
From: "W. Martin Borgert" <debacle@debian.org>
Date: Sun, 22 Nov 2015 22:40:43 +0100
Subject: add missing encoding to sources
---
activipy/__init__.py | 1 +
activipy/core.py | 1 +
activipy/testcli.py | 1 +
activipy/tests/test_core.py | 1 +
activipy/vocab.py | 1 +
setup.py | 1 +
6 files changed, 6 insertions(+)
diff --git a/activipy/__init__.py b/activipy/__init__.py
index 8ddef0c..363dae8 100644
--- a/activipy/__init__.py
+++ b/activipy/__init__.py
@@ -1,3 +1,4 @@
+# coding=utf-8
## Activipy --- ActivityStreams 2.0 implementation and validator for Python
## Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
##
diff --git a/activipy/core.py b/activipy/core.py
index 7c7f2c7..a01136b 100644
--- a/activipy/core.py
+++ b/activipy/core.py
@@ -1,3 +1,4 @@
+# coding=utf-8
## Activipy --- ActivityStreams 2.0 implementation and validator for Python
## Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
##
diff --git a/activipy/testcli.py b/activipy/testcli.py
index 48dad40..30e4ba8 100644
--- a/activipy/testcli.py
+++ b/activipy/testcli.py
@@ -1,3 +1,4 @@
+# coding=utf-8
## Activipy --- ActivityStreams 2.0 implementation and validator for Python
## Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
##
diff --git a/activipy/tests/test_core.py b/activipy/tests/test_core.py
index be3baf4..363e8de 100644
--- a/activipy/tests/test_core.py
+++ b/activipy/tests/test_core.py
@@ -1,3 +1,4 @@
+# coding=utf-8
## Activipy --- ActivityStreams 2.0 implementation and validator for Python
## Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
##
diff --git a/activipy/vocab.py b/activipy/vocab.py
index 55c6418..66c6786 100644
--- a/activipy/vocab.py
+++ b/activipy/vocab.py
@@ -1,3 +1,4 @@
+# coding=utf-8
## Activipy --- ActivityStreams 2.0 implementation and testing for Python
## Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
##
diff --git a/setup.py b/setup.py
index b7ac6e6..b8c2c43 100644
--- a/setup.py
+++ b/setup.py
@@ -1,3 +1,4 @@
+# coding=utf-8
## Activipy --- ActivityStreams 2.0 implementation and testing for Python
## Copyright © 2015 Christopher Allan Webber <cwebber@dustycloud.org>
##
|