Skip to content

Commit

Permalink
fix f-strings
Browse files Browse the repository at this point in the history
  • Loading branch information
eumiro committed Jul 10, 2023
1 parent 8fb5a92 commit baebe57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sh.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ class Logger(object):

def __init__(self, name, context=None):
self.name = name
self.log = logging.getLogger("{SH_LOGGER_NAME}.{name}")
self.log = logging.getLogger(f"{SH_LOGGER_NAME}.{name}")
self.context = self.sanitize_context(context)

def _format_msg(self, msg, *a):
Expand Down

0 comments on commit baebe57

Please sign in to comment.