Skip to content

Commit

Permalink
Update install requirements and add quote stripping for environment v…
Browse files Browse the repository at this point in the history
…ariables
  • Loading branch information
Andrew42 committed Nov 22, 2017
1 parent d83f154 commit a103623
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lobster/core/source.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def __init__(self, config):
for l in lines:
m = re.match('\s*CVMFS_HTTP_PROXY\s*=\s*[\'"]?(.*)[\'"]?', l)
if m:
self.__cvmfs_proxy = m.group(1)
self.__cvmfs_proxy = m.group(1).strip("\"'")
break
else:
try:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
]},
install_requires=[
'argparse',
'elasticsearch',
'elasticsearch_dsl',
'elasticsearch>=5.0.0,<6.0.0',
'elasticsearch_dsl>=5.0.0,<6.0.0',
'httplib2', # actually a WMCore dependency
'jinja2',
'matplotlib',
Expand Down

0 comments on commit a103623

Please sign in to comment.