Repository: cloudstack-cloudmonkey Updated Branches: refs/heads/master fc9146346 -> 47b18bf77
cloudmonkey: don't output empty line after every output Signed-off-by: Rohit Yadav <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/commit/47b18bf7 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/tree/47b18bf7 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/diff/47b18bf7 Branch: refs/heads/master Commit: 47b18bf77d11ef369599f9c0529ee8c303db5037 Parents: fc91463 Author: Rohit Yadav <[email protected]> Authored: Tue Dec 9 13:49:44 2014 +0530 Committer: Rohit Yadav <[email protected]> Committed: Tue Dec 9 13:50:49 2014 +0530 ---------------------------------------------------------------------- cloudmonkey/cloudmonkey.py | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/blob/47b18bf7/cloudmonkey/cloudmonkey.py ---------------------------------------------------------------------- diff --git a/cloudmonkey/cloudmonkey.py b/cloudmonkey/cloudmonkey.py index 1c21e36..b02393c 100644 --- a/cloudmonkey/cloudmonkey.py +++ b/cloudmonkey/cloudmonkey.py @@ -406,7 +406,6 @@ class CloudMonkeyShell(cmd.Cmd, object): responsekeys = filter(lambda x: 'response' in x, result.keys()) for responsekey in responsekeys: self.print_result(result[responsekey], field_filter) - print if apiname.startswith("list") and "id" not in args_dict: self.update_param_cache(apiname, result) except Exception as e:
