From 9e9cb2810e08cd1362bf55bd91928d0d0e05cd08 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 11 Jan 2013 14:07:47 +0200 Subject: [PATCH] Add a note about checking refleaks to patchcheck. --- Tools/scripts/patchcheck.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py index 438e44eeff..fe2e2913f1 100755 --- a/Tools/scripts/patchcheck.py +++ b/Tools/scripts/patchcheck.py @@ -174,8 +174,9 @@ def main(): # Test suite run and passed. if python_files or c_files: + end = " and check for refleaks?" if c_files else "?" print - print "Did you run the test suite?" + print "Did you run the test suite" + end if __name__ == '__main__': -- 2.50.0