Fixed unicode related problem (right now a quick fix removing "from future..." will return back to this later)

This commit is contained in:
Adolfo Gómez 2014-05-29 05:09:20 +00:00
parent 5a80efc852
commit 14a2e0a02d

View File

@ -32,8 +32,6 @@
@author: Adolfo Gómez, dkmaster at dkmon dot com
'''
from __future__ import unicode_literals
from django.utils.translation import ugettext_noop as _
from uds.core.ui.UserInterface import gui
from uds.core.auths import Authenticator
@ -42,7 +40,7 @@ from uds.core.auths.Exceptions import AuthenticatorException
import ldap
import logging
__updated__ = '2014-03-19'
__updated__ = '2014-05-29'
logger = logging.getLogger(__name__)