summaryrefslogtreecommitdiffstats
path: root/bin/ohi
diff options
context:
space:
mode:
authorThomas Wiest <twiest@users.noreply.github.com>2015-05-07 10:07:12 -0400
committerThomas Wiest <twiest@users.noreply.github.com>2015-05-07 10:07:12 -0400
commit4c16fcb11043133e162f4c0a966032a175082c9a (patch)
treea7e5186e77e58e1829ecb0e57c65ad4eccc96652 /bin/ohi
parentc9eac969338069062f632a4e5dc6becb6b2ac5b1 (diff)
parentc28d4ec46ff9152ae5c91837cc29423805af6bf3 (diff)
downloadopenshift-4c16fcb11043133e162f4c0a966032a175082c9a.tar.gz
openshift-4c16fcb11043133e162f4c0a966032a175082c9a.tar.bz2
openshift-4c16fcb11043133e162f4c0a966032a175082c9a.tar.xz
openshift-4c16fcb11043133e162f4c0a966032a175082c9a.zip
Merge pull request #212 from twiest/pr
added '-e all' to ohi.
Diffstat (limited to 'bin/ohi')
-rwxr-xr-xbin/ohi4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ohi b/bin/ohi
index bb52166df..24a027be2 100755
--- a/bin/ohi
+++ b/bin/ohi
@@ -47,12 +47,12 @@ class Ohi(object):
self.args.env is not None:
# Both env and host-type specified
hosts = self.aws.get_host_list(host_type=self.args.host_type, \
- env=self.args.env)
+ envs=self.args.env)
if self.args.host_type is None and \
self.args.env is not None:
# Only env specified
- hosts = self.aws.get_host_list(env=self.args.env)
+ hosts = self.aws.get_host_list(envs=self.args.env)
if self.args.host_type is not None and \
self.args.env is None: