Skip to content

Commit

Permalink
Merge pull request #248 from freedomofpress/fix-225-allow-latest-pip-…
Browse files Browse the repository at this point in the history
…tools

support pip-tools>5.0.0
  • Loading branch information
emkll authored May 11, 2021
2 parents 7768326 + 0050e81 commit 963db41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/verify-hashes
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ with open(requirements_file) as fobj:
# to be packaged, has a matching source tarball on FPF's PyPI.

# Remove lines with comments.
uncommented_lines = [line for line in lines if not line.startswith('#')]
uncommented_lines = [line for line in lines if not line.lstrip().startswith('#')]

# The hashes for a given requirement will be distributed
# across multiple lines, e.g.
Expand Down

0 comments on commit 963db41

Please sign in to comment.