Skip to content

Commit

Permalink
changed version number
Browse files Browse the repository at this point in the history
  • Loading branch information
BNMetrics committed Apr 18, 2018
1 parent af1e44a commit 4db6acc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion logme/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ def _get_logger_decorator(callable_: callable, config: str=None, name: str=None)
raise LogmeError("'{callable_}' must be a 'class' or a 'function'.")


__version__ = '1.0.3'
__version__ = '1.0.4'
2 changes: 1 addition & 1 deletion logme/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def strip_blank_recursive(nested_list: list):
elif isinstance(v, str):
try:
val_ = ast.literal_eval(v.strip())
except (ValueError, SyntaxError):
except (ValueError, SyntaxError): # SyntaxError raised when passing in "{asctime}::{message}"
val_ = v.strip()

nested_list[i] = val_
Expand Down

0 comments on commit 4db6acc

Please sign in to comment.