Skip to content

Commit

Permalink
Adding space to error
Browse files Browse the repository at this point in the history
  • Loading branch information
mahomedalid authored Jun 10, 2024
1 parent 98ba89f commit dfa21f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connectedk8s/azext_connectedk8s/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ def load_kube_config(kube_config, kube_context, skip_ssl_verification):
except Exception as e:
telemetry.set_exception(exception=e, fault_type=consts.Load_Kubeconfig_Fault_Type,
summary='Problem loading the kubeconfig file')
raise FileOperationError("Problem loading the kubeconfig file." + str(e))
raise FileOperationError("Problem loading the kubeconfig file. " + str(e))


def get_private_key(key_pair):
Expand Down

0 comments on commit dfa21f9

Please sign in to comment.