Fixes some inconsistencies when exporting configs.

pull/27/head
grossmj 10 years ago
parent f5cf7363da
commit 64f78bb847

@ -653,7 +653,7 @@ class VM(object):
if private_config_base64:
response["private_config_base64"] = private_config_base64
except DynamipsError:
self.send_custom_error("unable to extract configs")
self.send_custom_error("unable to extract configs from the NVRAM")
return
if not response:

@ -782,6 +782,10 @@ class IOU(IModule):
if not iou_instance:
return
if not iou_instance.initial_config:
self.send_custom_error("unable to export the initial-config because it doesn't exist")
return
response = {}
initial_config_path = os.path.join(iou_instance.working_dir, iou_instance.initial_config)
try:

Loading…
Cancel
Save