mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-18 07:23:47 +02:00
Fix missing format in IOU export
This commit is contained in:
parent
1fb4d191c9
commit
dea68bcb28
@ -1189,7 +1189,7 @@ class IOUVM(BaseVM):
|
|||||||
try:
|
try:
|
||||||
startup_config_content, private_config_content = nvram_export(nvram_content)
|
startup_config_content, private_config_content = nvram_export(nvram_content)
|
||||||
except ValueError as e:
|
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 None, None
|
||||||
|
|
||||||
return startup_config_content, private_config_content
|
return startup_config_content, private_config_content
|
||||||
|
Loading…
Reference in New Issue
Block a user