Merge "Fix syntax of relative imports for Python3"

This commit is contained in:
Jenkins 2013-12-17 22:35:20 +00:00 committed by Gerrit Code Review
commit 351118f577

View File

@ -27,6 +27,6 @@ __all__ = [
'get_rpc_server',
]
from client import *
from dispatcher import *
from server import *
from .client import *
from .dispatcher import *
from .server import *