~gz/pyjuju/0.5_unicode_token_backport

« back to all changes in this revision

Viewing changes to juju/errors.py

  • Committer: Clint Byrum
  • Author(s): Martin Packman
  • Date: 2012-09-10 08:32:41 UTC
  • Revision ID: clint@ubuntu.com-20120910083241-xueuh0bt5jl44w2b
OpenStack Provider

Show diffs side-by-side

added added

removed removed

Lines of Context:
159
159
    def __str__(self):
160
160
        return "Cannot find machine%s: %s" % (
161
161
            "" if len(self.instance_ids) == 1 else "s",
162
 
            ", ".join(self.instance_ids))
 
162
            ", ".join(map(str, self.instance_ids)))
163
163
 
164
164
 
165
165
class ProviderInteractionError(ProviderError):