diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-10-27 22:44:42 +0100 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2010-10-27 22:44:42 +0100 |
commit | 24b2b7782945d0953ed0a0086ce0fff3025b6512 (patch) | |
tree | a1c6257b6cf295d76dc9705e48af444226a45a8d /pykolab/__init__.py | |
parent | 0cb6931999d22a3c9c1ef1965983ff33b61ba614 (diff) | |
download | pykolab-24b2b7782945d0953ed0a0086ce0fff3025b6512.tar.gz |
Reorder importing the core components
Diffstat (limited to 'pykolab/__init__.py')
-rw-r--r-- | pykolab/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pykolab/__init__.py b/pykolab/__init__.py index ac6f538..7c0b4a5 100644 --- a/pykolab/__init__.py +++ b/pykolab/__init__.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright 2010 Kolab Systems AG (http://www.kolabsys.com) # # Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen a kolabsys.com> @@ -23,6 +24,6 @@ import sys import pykolab import pykolab.plugins -from pykolab.translate import _ from pykolab.conf import Conf from pykolab.constants import * +from pykolab.translate import _ |