diff --git a/openwebvulndb/common/vcs.py b/openwebvulndb/common/vcs.py index 1cd4f40..9befcdd 100644 --- a/openwebvulndb/common/vcs.py +++ b/openwebvulndb/common/vcs.py @@ -227,7 +227,7 @@ async def get_components_with_new_release(self, key, repository_url, date): async def _get_last_release_date_of_components(self, key, repository_url): def parse_line(line): - line = line.lstrip() # Whitespace at beginning of line when revision has less digits. + line = line.lstrip() # Remove whitespace added at beginning of line when revision has less digits. match = line_pattern.match(line) if match: component_key, day, month, year = match.group("component", "day", "month", "year")