summaryrefslogtreecommitdiff
path: root/pkg
diff options
context:
space:
mode:
authorRuben Pollan <meskio@sindominio.net>2015-11-25 23:46:24 +0100
committerRuben Pollan <meskio@sindominio.net>2015-11-26 13:47:29 +0100
commit5cba5ae32003efd7b068e6646ba4c0ada4e29867 (patch)
tree95f61c0207669339f165a6ecaabd107972b15364 /pkg
parent4557b215775b9dbc438292449d05806f2e43ae0f (diff)
[style] fix pep8 errors
Diffstat (limited to 'pkg')
-rw-r--r--pkg/utils/reqs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/utils/reqs.py b/pkg/utils/reqs.py
index f10051e..251c7e9 100644
--- a/pkg/utils/reqs.py
+++ b/pkg/utils/reqs.py
@@ -67,8 +67,8 @@ 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))
+ # 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',