https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f89b406de6ab381a045f3c...
commit f89b406de6ab381a045f3c5bfa3c5180e90674bd Author: Mark Jansen mark.jansen@reactos.org AuthorDate: Thu Nov 3 00:13:48 2022 +0100 Commit: Mark Jansen mark.jansen@reactos.org CommitDate: Fri Nov 4 23:02:25 2022 +0100
[SDK] Fix missing comma in check_packing.py --- sdk/tools/check_packing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sdk/tools/check_packing.py b/sdk/tools/check_packing.py index f56e49a2fb6..fa44079a892 100644 --- a/sdk/tools/check_packing.py +++ b/sdk/tools/check_packing.py @@ -1,14 +1,14 @@ ''' PROJECT: ReactOS code linter LICENSE: MIT (https://spdx.org/licenses/MIT) -PURPOSE: Verifies that there are no headers included when packing is modified +PURPOSE: Verifies that there are no headers included where packing is modified COPYRIGHT: Copyright 2021 Mark Jansen mark.jansen@reactos.org ''' from pathlib import Path import re
DEFAULT_SUFFIXES = [ - '.cpp', '.cxx', '.cc', '.c', '.idl' + '.cpp', '.cxx', '.cc', '.c', '.idl', '.hpp', '.h', '.inc' ]