summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-07-28 11:41:32 -0400
committerKali Kaneko <kali@leap.se>2015-07-28 11:41:32 -0400
commita119dd4fa2fc4a14577fd2d6e32dff950d934193 (patch)
tree27cec6f2ef4b3ac4396234a36b718864fe92e8de /pkg
parent8668cf04e59bd4c1fe45a7e74cd0c214ae50b052 (diff)
[style] more pep8 cleanup
Diffstat (limited to 'pkg')
-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))