session: move the session module from ipalib to ipaserver

The module is used only on the server, so there's no need to have it in
ipalib, which is shared by client and server.

https://fedorahosted.org/freeipa/ticket/5988

Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
This commit is contained in:
Jan Cholasta
2016-06-29 15:47:07 +02:00
parent ec6925e775
commit dcf8b47471
6 changed files with 7 additions and 7 deletions

View File

@@ -7,7 +7,7 @@ from ipalib.request import context
from ipalib.plugable import Registry
if api.env.in_server:
from ipalib.session import session_mgr
from ipaserver.session import session_mgr
register = Registry()