Skip to content

Commit

Permalink
More fixups for this.
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Harlow committed Mar 2, 2012
1 parent 7b19759 commit d66d870
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tools/pip_packager.py
Expand Up @@ -29,11 +29,10 @@
else:
pips[k] = version
for (pip_name, version) in pips.items():
full_name = pip_name
print("Fetching %s (%s)" % (pip_name, version))
cmd = ['py2pack'] + ['fetch', pip_name]
if version:
full_name = full_name + "==" + version
print("Fetching %s" % (full_name))
cmd = ['py2pack'] + ['fetch', full_name]
cmd = cmd + [version]
sh.execute(*cmd)


Expand Down

0 comments on commit d66d870

Please sign in to comment.