From f89b406de6ab381a045f3c5bfa3c5180e90674bd Mon Sep 17 00:00:00 2001 From: Mark Jansen Date: Thu, 3 Nov 2022 00:13:48 +0100 Subject: [PATCH] [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 ''' from pathlib import Path import re DEFAULT_SUFFIXES = [ - '.cpp', '.cxx', '.cc', '.c', '.idl' + '.cpp', '.cxx', '.cc', '.c', '.idl', '.hpp', '.h', '.inc' ]