~hopem/charms/trusty/cinder/charm-helpers-sync-1396246

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/contrib/openstack/amulet/deployment.py

  • Committer: james.page at ubuntu
  • Date: 2014-12-15 09:19:37 UTC
  • mfrom: (56.2.8 cinder)
  • Revision ID: james.page@ubuntu.com-20141215091937-lzxj8mr2b2gqz764
[corey.bryant,r=james-page] Sort out charmhelpers issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import six
1
2
from charmhelpers.contrib.amulet.deployment import (
2
3
    AmuletDeployment
3
4
)
69
70
 
70
71
    def _configure_services(self, configs):
71
72
        """Configure all of the services."""
72
 
        for service, config in configs.iteritems():
 
73
        for service, config in six.iteritems(configs):
73
74
            self.d.configure(service, config)
74
75
 
75
76
    def _get_openstack_release(self):