Skip to content

Commit

Permalink
fix ret
Browse files Browse the repository at this point in the history
  • Loading branch information
cmcmarrow committed Mar 9, 2020
1 parent ff8a44b commit 9ef0cf9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,8 @@ def _parse_requirements_file(requirements_file):
continue
if not line or line.startswith('-r'):
file = line.split()[1]
parsed_requirements = _parse_requirements_file(os.path.join(os.path.dirname(requirements_file), file))
parsed_requirements.extend(parsed_requirements)
ret_requirements = _parse_requirements_file(os.path.join(os.path.dirname(requirements_file), file))
parsed_requirements.extend(ret_requirements)
continue
if IS_WINDOWS_PLATFORM:
if 'libcloud' in line:
Expand Down

0 comments on commit 9ef0cf9

Please sign in to comment.