Skip to content

Commit 0f2e09e

Browse files
authored
Merge pull request #97 from unipolar/python2.7-unicode-issues
fix python2.7 compatibility, unicode logging issue
2 parents 8a40c28 + 7a19609 commit 0f2e09e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

connect/logger/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def wrapper(self, *args, **kwargs):
3434
custom_logger.debug('Function params: {} {}'.format(args, kwargs))
3535
result = func(self, *args, **kwargs)
3636
custom_logger.debug(
37-
'Function `{}.{}` return: {}'.format(
37+
u'Function `{}.{}` return: {}'.format(
3838
self.__class__.__name__, func.__name__, result))
3939
return result
4040

0 commit comments

Comments
 (0)