Skip to content

Commit 73dbfa3

Browse files
committed
Minor - remove extra space
1 parent 08ce7c6 commit 73dbfa3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/unittest/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ def _formatMessage(self, msg, standardMsg):
778778
# it changes the way unicode input is handled
779779
return '%s : %s' % (standardMsg, msg)
780780
except UnicodeDecodeError:
781-
return '%s : %s' % (safe_repr(standardMsg), safe_repr(msg))
781+
return '%s : %s' % (safe_repr(standardMsg), safe_repr(msg))
782782

783783
def assertRaises(self, expected_exception, *args, **kwargs):
784784
"""Fail unless an exception of class expected_exception is raised

0 commit comments

Comments
 (0)