diff options
| author | Thomas Wiest <twiest@redhat.com> | 2015-05-06 16:17:13 -0400 |
|---|---|---|
| committer | Thomas Wiest <twiest@redhat.com> | 2015-05-07 10:05:36 -0400 |
| commit | c28d4ec46ff9152ae5c91837cc29423805af6bf3 (patch) | |
| tree | a7e5186e77e58e1829ecb0e57c65ad4eccc96652 /bin/ohi | |
| parent | c9eac969338069062f632a4e5dc6becb6b2ac5b1 (diff) | |
added '-e all' to ohi and fixed pylint errors.
Diffstat (limited to 'bin/ohi')
| -rwxr-xr-x | bin/ohi | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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: |
