diff options
author | Éric Araujo <aeric@mtlpy.org> | 2012-12-08 22:57:08 -0500 |
---|---|---|
committer | Éric Araujo <aeric@mtlpy.org> | 2012-12-08 22:57:08 -0500 |
commit | bb7da03f6e558014d9863cc4501a2ac91c7c2a3a (patch) | |
tree | cae020b28344421abc7c3535d425c63c0b6c7119 /Lib/distutils/command/check.py | |
parent | 53f604c79458861553d0ea00db44074b7c4d4333 (diff) | |
parent | 3f7c0e403606f7e888442048ac71cb8f391e8d83 (diff) | |
download | cpython-git-bb7da03f6e558014d9863cc4501a2ac91c7c2a3a.tar.gz |
Merge fixes for #13614, #13512 and #7719 from 3.3
Diffstat (limited to 'Lib/distutils/command/check.py')
-rw-r--r-- | Lib/distutils/command/check.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/distutils/command/check.py b/Lib/distutils/command/check.py index b67c795308..22b9349dd6 100644 --- a/Lib/distutils/command/check.py +++ b/Lib/distutils/command/check.py @@ -23,6 +23,9 @@ try: def system_message(self, level, message, *children, **kwargs): self.messages.append((level, message, children, kwargs)) + return nodes.system_message(message, level=level, + type=self.levels[level], + *children, **kwargs) HAS_DOCUTILS = True except Exception: |