Skip to content

Commit 8d54152

Browse files
committed
Fix link to GitHub issues page
Ending the warning with a "." might result in a 404, if the terminal decides to treat that as part of the URL. Signed-off-by: John Pennycook <john.pennycook@intel.com>
1 parent effdff9 commit 8d54152

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codebasin/file_source.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ def c_file_source(fp, directives_only=False):
521521
if parsing_failed:
522522
raise RuntimeError(
523523
"Parsing failed. Please open a bug report at: "
524-
"https://github.com/intel/code-base-investigator/issues/new?template=bug_report.yml.", # noqa: E501
524+
"https://github.com/intel/code-base-investigator/issues/new?template=bug_report.yml", # noqa: E501
525525
)
526526

527527
return (total_sloc, total_physical_lines)
@@ -602,7 +602,7 @@ def fortran_file_source(fp):
602602
if parsing_failed:
603603
raise RuntimeError(
604604
"Parsing failed. Please open a bug report at: "
605-
"https://github.com/intel/code-base-investigator/issues/new?template=bug_report.yml.", # noqa: E501
605+
"https://github.com/intel/code-base-investigator/issues/new?template=bug_report.yml", # noqa: E501
606606
)
607607

608608
return (total_sloc, total_physical_lines)

0 commit comments

Comments
 (0)