Fix import in keystone resources

In Python3, implicit relative imports are no longer
supported. So change the import to be explicit.

partial blueprint heat-python34-support

Change-Id: I5248176cf394720d9e68855423dcec188fc4e17d
This commit is contained in:
Sirushti Murugesan 2015-06-29 09:05:52 +05:30
parent f1f4d60e0a
commit d48b7176f1
2 changed files with 2 additions and 4 deletions

View File

@ -11,11 +11,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import role_assignments
from heat.common.i18n import _
from heat.engine import constraints
from heat.engine import properties
from heat.engine.resources.openstack.keystone import role_assignments
from heat.engine import support

View File

@ -11,11 +11,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import role_assignments
from heat.common.i18n import _
from heat.engine import constraints
from heat.engine import properties
from heat.engine.resources.openstack.keystone import role_assignments
from heat.engine import support