Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jul 17, 2026
1 parent f00c4ee commit 7b7f2d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions local-app/python-tools/cross-organization/org_runner3.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from rich.progress import Progress, BarColumn, TextColumn, TimeElapsedColumn, SpinnerColumn

# --- VERSIONING ---
__version__ = "3.3.2"
__version__ = "3.3.3"

console = Console()

Expand Down Expand Up @@ -480,7 +480,7 @@ def main():

hours, remainder = divmod(int(elapsed_duration), 3600)
minutes, seconds = divmod(remainder, 60)
elapsed_friendly = f"{hours:02d}h:{minutes:02dm}:{seconds:02d}s"
elapsed_friendly = f"{hours:02d}h:{minutes:02d}m:{seconds:02d}s"

console.print(f"[bold blue]----------------------------------------------------------------------[/bold blue]")
console.print(f"Execution Timeline Status Summary Parameters:")
Expand All @@ -496,4 +496,4 @@ def main():
active_logger_handle.close()

if __name__ == "__main__":
main()
main()

0 comments on commit 7b7f2d9

Please sign in to comment.