Merge "Namespace resolution was incorrect for empty namespace"

This commit is contained in:
Jenkins 2016-02-29 12:43:28 +00:00 committed by Gerrit Code Review
commit 1f24d31492

View File

@ -49,5 +49,5 @@ class NamespaceResolver(object):
ns = self._namespaces[parts[0]]
if not ns:
return name
return parts[1]
return '.'.join((ns, parts[1]))