Skip to content

Commit

Permalink
Bump version to 1.2.50 with print_config() catching
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolphpienaar committed May 8, 2024
1 parent 9e860b0 commit 2e32636
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions spleenseg/spleenseg.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
╚══════╝╚═╝ ╚══════╝╚══════╝╚══════╝╚═╝ ╚═══╝╚══════╝╚══════╝ ╚═════╝
"""

__version__ = "1.2.48"
__version__ = "1.2.50"
import spleenseg.splparser as spl

description: str = """
Expand Down Expand Up @@ -112,8 +112,12 @@ def envDetail_print(options: Namespace, **kwargs):
print(DISPLAY_TITLE)
f = Figlet(font="doom")
print(f.renderText(f"{options.mode}"))
print(f"Device = {options.device}")
print_config()
print(f"\nversion: {__version__}")
print(f"Device: {options.device}")
try:
print_config()
except Exception as e:
print("While printing some env info, some exception occurred. Ignoring...")


def env_outputDirsMake(options: Namespace) -> None:
Expand Down

0 comments on commit 2e32636

Please sign in to comment.