Skip to content

Commit

Permalink
Fix #6, issue where log messages would attempt to concatenate str wit…
Browse files Browse the repository at this point in the history
…h list.
  • Loading branch information
tony committed Feb 5, 2014
1 parent fcc0feb commit 69894ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vcspull/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def default_log_template(self, record):
"""

reset = Style.RESET_ALL
reset = [Style.RESET_ALL]
levelname = [
LEVEL_COLORS.get(record.levelname), Style.BRIGHT,
'(%(levelname)s)',
Expand Down Expand Up @@ -87,7 +87,7 @@ def debug_log_template(self, record):
"""

reset = Style.RESET_ALL
reset = [Style.RESET_ALL]
levelname = [
LEVEL_COLORS.get(record.levelname), Style.BRIGHT,
'(%(levelname)1.1s)',
Expand Down

0 comments on commit 69894ec

Please sign in to comment.