diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | combox/cbox.py | 2 | ||||
-rw-r--r-- | combox/config.py | 3 | ||||
-rw-r--r-- | combox/crypto.py | 2 | ||||
-rw-r--r-- | combox/events.py | 2 | ||||
-rw-r--r-- | combox/file.py | 2 | ||||
-rw-r--r-- | combox/gui.py | 3 | ||||
-rw-r--r-- | combox/log.py | 2 | ||||
-rw-r--r-- | combox/silo.py | 2 | ||||
-rw-r--r-- | tests/_version_test.py | 2 | ||||
-rw-r--r-- | tests/config_test.py | 2 | ||||
-rw-r--r-- | tests/crypto_test.py | 2 | ||||
-rw-r--r-- | tests/events_test.py | 2 | ||||
-rw-r--r-- | tests/file_test.py | 2 | ||||
-rw-r--r-- | tests/silo_test.py | 2 | ||||
-rw-r--r-- | tests/utils.py | 2 |
16 files changed, 34 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2015-12-22 Siddharth Ravikumar <sravik@bgsu.edu> + All .py files now have a coding set to utf-8. + +2015-12-22 Siddharth Ravikumar <sravik@bgsu.edu> + * combox/_version.py: bumped to version 0.2.0 * README.rst: Added "Installation" section. diff --git a/combox/cbox.py b/combox/cbox.py index d8775db..0ffdadb 100644 --- a/combox/cbox.py +++ b/combox/cbox.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# #!/usr/bin/env python # # Copyright (C) 2015 Combox author(s). See AUTHORS. diff --git a/combox/config.py b/combox/config.py index 3a3e9c6..8bc7c51 100644 --- a/combox/config.py +++ b/combox/config.py @@ -1,4 +1,5 @@ - +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/combox/crypto.py b/combox/crypto.py index f0cafe1..282ea14 100644 --- a/combox/crypto.py +++ b/combox/crypto.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/combox/events.py b/combox/events.py index fa238ee..25867bc 100644 --- a/combox/events.py +++ b/combox/events.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/combox/file.py b/combox/file.py index 2f65e05..b3792a4 100644 --- a/combox/file.py +++ b/combox/file.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/combox/gui.py b/combox/gui.py index 2195ecb..6c2a92a 100644 --- a/combox/gui.py +++ b/combox/gui.py @@ -1,4 +1,5 @@ - +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/combox/log.py b/combox/log.py index 0918d9e..303a9ca 100644 --- a/combox/log.py +++ b/combox/log.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/combox/silo.py b/combox/silo.py index b9ffc13..3c6f835 100644 --- a/combox/silo.py +++ b/combox/silo.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/tests/_version_test.py b/tests/_version_test.py index 92034eb..7e1ccc1 100644 --- a/tests/_version_test.py +++ b/tests/_version_test.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/tests/config_test.py b/tests/config_test.py index b60cc40..5ce6aca 100644 --- a/tests/config_test.py +++ b/tests/config_test.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/tests/crypto_test.py b/tests/crypto_test.py index 454255c..ca1c15a 100644 --- a/tests/crypto_test.py +++ b/tests/crypto_test.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/tests/events_test.py b/tests/events_test.py index 4ef75ce..b62b82d 100644 --- a/tests/events_test.py +++ b/tests/events_test.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/tests/file_test.py b/tests/file_test.py index f3a153d..7fbd6b7 100644 --- a/tests/file_test.py +++ b/tests/file_test.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/tests/silo_test.py b/tests/silo_test.py index 997e8d2..8162982 100644 --- a/tests/silo_test.py +++ b/tests/silo_test.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. diff --git a/tests/utils.py b/tests/utils.py index 3f46813..73096f1 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. |