summaryrefslogtreecommitdiff
path: root/pkg/utils.py
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2015-09-01 14:18:25 -0400
committerMicah Anderson <micah@riseup.net>2015-09-01 14:18:25 -0400
commit7c5de540396e1a84da4bbaf95865fc53239db5c3 (patch)
tree912d3bd175747fce1fd1fd4d1e01826598cad322 /pkg/utils.py
parent3bb0b76770a124a13226556b60bcd84d3cc99a0b (diff)
parent56724056f95e3d908c3fd11840cf62e64afb9e0f (diff)
Merge remote-tracking branch 'kali/debian/0.4.2' into debian/experimental
Diffstat (limited to 'pkg/utils.py')
-rw-r--r--pkg/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/utils.py b/pkg/utils.py
index deace14..521cd4e 100644
--- a/pkg/utils.py
+++ b/pkg/utils.py
@@ -58,9 +58,9 @@ def parse_requirements(reqfiles=['requirements.txt',
if re.match(r'\s*-e\s+', line):
pass
# do not try to do anything with externals on vcs
- #requirements.append(re.sub(r'\s*-e\s+.*#egg=(.*)$', r'\1',
- #line))
- # http://foo.bar/baz/foobar/zipball/master#egg=foobar
+ # requirements.append(re.sub(r'\s*-e\s+.*#egg=(.*)$', r'\1',
+ # line))
+ # http://foo.bar/baz/foobar/zipball/master#egg=foobar
elif re.match(r'\s*https?:', line):
requirements.append(re.sub(r'\s*https?:.*#egg=(.*)$', r'\1',
line))