Use absolute imports

In Python 3, implicit relative imports will not be supported.
Use fully-qualified imports everywhere.

Reviewed-By: Tomas Babej <tbabej@redhat.com>
This commit is contained in:
Petr Viktorin
2015-07-31 10:15:01 +02:00
committed by Tomas Babej
parent 262faec70a
commit 5435a8a32a
63 changed files with 159 additions and 138 deletions

View File

@@ -115,7 +115,8 @@ forms, see `NGettextFactory` and `NGettext`.
import threading
import locale
import gettext
from request import context
from ipalib.request import context
def create_translation(key):