diff options
Diffstat (limited to 'tools/boost_names.py')
-rwxr-xr-x | tools/boost_names.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/boost_names.py b/tools/boost_names.py index b716ccb..f27d524 100755 --- a/tools/boost_names.py +++ b/tools/boost_names.py @@ -277,12 +277,12 @@ def main() -> int: ''')) for mod in modules: - desc_excaped = re.sub(r"'", "\\'", mod.desc) + desc_escaped = re.sub(r"'", "\\'", mod.desc) print(textwrap.indent(textwrap.dedent(f"""\ '{mod.key}': BoostModule( name='{mod.name}', key='{mod.key}', - desc='{desc_excaped}', + desc='{desc_escaped}', libs={[x.name for x in mod.libs]}, ),\ """), ' ')) |