Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
e860234d
Commit
e860234d
authored
Aug 01, 2014
by
Kenneth Reitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for pip-grep
parent
50d61d29
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
pip-grep
vendor/pip-pop/pip-grep
+7
-1
No files found.
vendor/pip-pop/pip-grep
View file @
e860234d
...
...
@@ -39,8 +39,10 @@ def grep(reqfile, packages, silent=False):
try
:
r
=
Requirements
(
reqfile
)
except
ValueError
:
if
not
silent
:
print
'There was a problem loading the given requirement file.'
exit
(
os
.
EX_NOINPUT
)
for
requirement
in
r
.
requirements
:
...
...
@@ -48,11 +50,15 @@ def grep(reqfile, packages, silent=False):
if
requirement
.
req
:
if
requirement
.
req
.
project_name
in
packages
:
if
not
silent
:
print
'Package {} found!'
.
format
(
requirement
.
req
.
project_name
)
exit
(
0
)
print
'Not found.'
.
format
(
requirement
.
req
.
project_name
)
if
not
silent
:
print
'Not found.'
.
format
(
requirement
.
req
.
project_name
)
exit
(
1
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment