diff options
author | Ronan Amicel <ronan.amicel@gmail.com> | 2012-09-14 02:48:07 +0200 |
---|---|---|
committer | Ronan Amicel <ronan.amicel@gmail.com> | 2012-09-21 02:25:51 +0200 |
commit | de706238f7ebbfffc6878f2893b5d1393eebc973 (patch) | |
tree | 73b409bba91644b5f3d84b8f0b2da8cd40649bb3 | |
parent | Merge pull request #28 from cyberj/master (diff) | |
download | fabtools-de706238f7ebbfffc6878f2893b5d1393eebc973.tar.xz |
Remove unused parameter
-rw-r--r-- | fabtools/python_distribute.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fabtools/python_distribute.py b/fabtools/python_distribute.py index 59fe823..0293e9c 100644 --- a/fabtools/python_distribute.py +++ b/fabtools/python_distribute.py @@ -24,7 +24,7 @@ def install_distribute(): sudo("python distribute_setup.py") -def install(packages, installer=None, upgrade=False, use_sudo=False): +def install(packages, upgrade=False, use_sudo=False): """ Install Python packages with distribute """ |