1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-26 00:38:10 +00:00

Fix missing format in IOU export

This commit is contained in:
Julien Duponchelle 2016-02-11 09:15:48 +01:00
parent 1fb4d191c9
commit dea68bcb28
No known key found for this signature in database
GPG Key ID: F1E2485547D4595D

View File

@ -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