Commit 8e12440d by Michael DeHaan

Merge pull request #830 from cybertoast/feature/pip_module_py2.4

Feature/pip module py2.4
parents f311d685 66a62319
......@@ -175,7 +175,10 @@ def main():
(not installed and state == 'present'))
if changed:
full_name = _get_full_name(name, version) if state == 'present' else name
if state == 'present':
full_name = _get_full_name(name, version)
else:
full_name = name
cmd = '%s %s %s' % (PIP, command_map[state], full_name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment