Skip to content

Commit

Permalink
Merge pull request #6 from nimbis/master
Browse files Browse the repository at this point in the history
Don't check against URLs in requirements files
  • Loading branch information
dcramer committed Aug 13, 2012
2 parents cb2752e + 0054aac commit 7d79018
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/piplint/__init__.py
Expand Up @@ -61,6 +61,8 @@ def is_requirements_line(line):
return True
if line.startswith('-'):
return False
if line.startswith('http://') or line.startswith('https://'):
return False
return True


Expand Down

0 comments on commit 7d79018

Please sign in to comment.