Filenames that come from the hunks match include the git-ified 'b/'
prefix, which makes jumping to the error file that much harder.  This
patch corrects that by simply skipping those bytes.

Signed-off-by: Aaron Conole <acon...@redhat.com>
---
 utilities/checkpatch.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utilities/checkpatch.py b/utilities/checkpatch.py
index 06c0a56..b4e5a04 100755
--- a/utilities/checkpatch.py
+++ b/utilities/checkpatch.py
@@ -300,7 +300,7 @@ def ovs_checkpatch_parse(text):
         elif parse == 2:
             newfile = hunks.match(line)
             if newfile:
-                current_file = newfile.group(2)
+                current_file = newfile.group(2)[2:]
                 print_file_name = current_file
                 continue
             reset_line_number = hunk_differences.match(line)
-- 
2.9.3

_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to