diff options
Diffstat (limited to 'cloudinit/net/eni.py')
-rw-r--r-- | cloudinit/net/eni.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/net/eni.py b/cloudinit/net/eni.py index cdcc951b..eff5b924 100644 --- a/cloudinit/net/eni.py +++ b/cloudinit/net/eni.py @@ -62,7 +62,7 @@ def _iface_add_subnet(iface, subnet): value = " ".join(value) if '_' in key: key = key.replace('_', '-') - content.append(" {} {}".format(key, value)) + content.append(" {0} {1}".format(key, value)) return sorted(content) @@ -95,7 +95,7 @@ def _iface_add_attrs(iface, index): continue if type(value) == list: value = " ".join(value) - content.append(" {} {}".format(renames.get(key, key), value)) + content.append(" {0} {1}".format(renames.get(key, key), value)) return sorted(content) |