Skip to content

Commit

Permalink
modify comment
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasAubry committed Oct 23, 2017
1 parent 88b0026 commit 4fd4fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openwebvulndb/common/vcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 4fd4fb7

Please sign in to comment.