diff options
-rw-r--r-- | tools/wheels/check_license.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/wheels/check_license.py b/tools/wheels/check_license.py index b181e281f..0fe7356c0 100644 --- a/tools/wheels/check_license.py +++ b/tools/wheels/check_license.py @@ -16,7 +16,8 @@ import argparse def check_text(text): ok = "Copyright (c)" in text and re.search( - r"This binary distribution of \w+ also bundles the following software", text + r"This binary distribution of \w+ also bundles the following software", + text, ) return ok |