Fix missing format in IOU export

pull/459/head
Julien Duponchelle 8 years ago
parent 1fb4d191c9
commit dea68bcb28
No known key found for this signature in database
GPG Key ID: F1E2485547D4595D

@ -1189,7 +1189,7 @@ class IOUVM(BaseVM):
try:
startup_config_content, private_config_content = nvram_export(nvram_content)
except ValueError as e:
log.warning("Could not export configs from nvram file".format(nvram_file, e))
log.warning("Could not export configs from nvram file {}: {}".format(nvram_file, e))
return None, None
return startup_config_content, private_config_content

Loading…
Cancel
Save