diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-08-29 16:41:06 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2014-08-30 19:05:02 +0200 |
commit | 380e00cf40cd50a05578d068cc3fd566590d1ed4 (patch) | |
tree | 1bb2793a155777701bbeea5dea6d661037b779aa /module | |
parent | Fix Locales (diff) | |
download | pyload-380e00cf40cd50a05578d068cc3fd566590d1ed4.tar.xz |
__init__ shebangs
Diffstat (limited to 'module')
-rw-r--r-- | module/cli/__init__.py | 2 | ||||
-rw-r--r-- | module/database/__init__.py | 2 | ||||
-rw-r--r-- | module/remote/__init__.py | 1 | ||||
-rw-r--r-- | module/remote/thriftbackend/thriftgen/pyload/__init__.py | 2 |
4 files changed, 7 insertions, 0 deletions
diff --git a/module/cli/__init__.py b/module/cli/__init__.py index f8db0ae7e..413c6a638 100644 --- a/module/cli/__init__.py +++ b/module/cli/__init__.py @@ -1,2 +1,4 @@ +# -*- coding: utf-8 -*- + from AddPackage import AddPackage from ManageFiles import ManageFiles diff --git a/module/database/__init__.py b/module/database/__init__.py index 10c5b35aa..5f287a47f 100644 --- a/module/database/__init__.py +++ b/module/database/__init__.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- + from DatabaseBackend import DatabaseBackend from DatabaseBackend import style diff --git a/module/remote/__init__.py b/module/remote/__init__.py index 9298f5337..60dfa77c7 100644 --- a/module/remote/__init__.py +++ b/module/remote/__init__.py @@ -1,2 +1,3 @@ # -*- coding: utf-8 -*- + activated = True diff --git a/module/remote/thriftbackend/thriftgen/pyload/__init__.py b/module/remote/thriftbackend/thriftgen/pyload/__init__.py index ce7f52598..9a0fb88bf 100644 --- a/module/remote/thriftbackend/thriftgen/pyload/__init__.py +++ b/module/remote/thriftbackend/thriftgen/pyload/__init__.py @@ -1 +1,3 @@ +# -*- coding: utf-8 -*- + __all__ = ['ttypes', 'constants', 'Pyload'] |