Skip to content

Commit

Permalink
unable to load profile exception
Browse files Browse the repository at this point in the history
  • Loading branch information
romekodexa committed Mar 22, 2024
1 parent b39f88a commit 411232b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion kodexa_cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,11 @@ def safe_entry_point():
try:
# Record the starting time of the function execution
start_time = datetime.now().replace(microsecond=0)
print(f"Using profile {KodexaPlatform.get_current_profile()} @ {KodexaPlatform.get_url()}\n")

try:
print(f"Using profile {KodexaPlatform.get_current_profile()} @ {KodexaPlatform.get_url()}\n")
except:
print("Unable to load profile")

# Call the cli() function
cli()
Expand Down

0 comments on commit 411232b

Please sign in to comment.