Skip to content

Commit

Permalink
Merge pull request #155 from raphael-group/vb/hotfix_errormsg
Browse files Browse the repository at this point in the history
Bug fix with the error() function
  • Loading branch information
mmyers1 authored Aug 19, 2022
2 parents 9832b01 + 9435ee8 commit 03fe4cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "hatchet"
version = "1.0.2"
version = "1.0.3"
authors = [
{ name="Simone Zaccaria", email="[email protected]" },
{ name="Ben Raphael", email="[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion src/hatchet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0.2'
__version__ = '1.0.3'

import os.path
from importlib.resources import path
Expand Down
2 changes: 2 additions & 0 deletions src/hatchet/utils/Supporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ def log(

if level == 'ERROR' and raise_exception:
raise exception_class(msg)
else:
return formatted_msg


def logArgs(args, width=40):
Expand Down

0 comments on commit 03fe4cc

Please sign in to comment.