The help function is busted in 0.12 (both on Mac OS X and Linux)
aws help
aws ec2 help
and all variants give
buildoperator@build-saas:~$ aws ec2 help
Traceback (most recent call last):
File "/usr/local/bin/aws", line 23, in
sys.exit(main())
File "/usr/local/bin/aws", line 19, in main
return awscli.clidriver.main()
File "/usr/local/lib/python2.7/dist-packages/awscli/clidriver.py", line 37, in main
return driver.main()
File "/usr/local/lib/python2.7/dist-packages/awscli/clidriver.py", line 287, in main
status = self._parse_args(args)
File "/usr/local/lib/python2.7/dist-packages/awscli/clidriver.py", line 265, in _parse_args
self.service_parser.parse(self.main_parser.remaining)
File "/usr/local/lib/python2.7/dist-packages/awscli/argparser.py", line 37, in parse
self.do_help()
File "/usr/local/lib/python2.7/dist-packages/awscli/argparser.py", line 110, in do_help
get_service_help(self.session, self.service)
File "/usr/local/lib/python2.7/dist-packages/awscli/help.py", line 71, in get_service_help
render_docs(_encode_contents(rst_contents))
File "/usr/local/lib/python2.7/dist-packages/awscli/help.py", line 56, in render_docs
_render_docs_posix(rst_contents)
File "/usr/local/lib/python2.7/dist-packages/awscli/help.py", line 39, in _render_docs_posix
p3 = Popen(cmdline, stdin=p2.stdout, stdout=PIPE)
File "/usr/lib/python2.7/subprocess.py", line 679, in __init__
errread, errwrite)
File "/usr/lib/python2.7/subprocess.py", line 1249, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
Broken aws --version (today)
aws-cli/0.12.0 Python/2.7.3 Linux/3.2.0-45-virtual
aws-cli/0.12.0 Python/2.7.2 Darwin/12.3.0
Working aws --version (last week)
Boto/0.11.0 Python/2.7.3 Linux/3.2.0-45-virtual
I'm trying to reproduce this but I'm not able to:
virtualenv -p python2.7 /tmp/foo
. /tmp/foo/bin/activate
pip install awscli
aws help
aws ec2 help
That's from a fresh virtualenv though. Did you upgrade from 0.11.0 via pip install --upgrade awscli
?
The line that's causing the traceback happens when it shells out to groff
. What's the output of groff --version
?
No not an upgrade, it's 3 different systems, all of them clean installs. The working one was one of 4 ubuntu 12.04.2 amis I created last week. All of them functioning. The busted versions are a recent Mountain Lion and ubuntu 12.04.2 on vmware
On the broken mac : groff --version
GNU groff version 1.19.2
GNU grops (groff) version 1.19.2
GNU troff (groff) version 1.19.2
On the working linux :
GNU groff version 1.21
GNU troff (groff) version 1.21
GNU grops (groff) version 1.21
On the broken Linux : groff wasn't installed
after sudo apt-get install the help started working and was the same version of groff
Properbly fixed with #145
This is happening again now that I've updated to the latest 0.13.2 build.
$ aws --version
aws-cli/0.13.2 Python/2.7.5 Darwin/12.4.0
Here's an example debug output.
$ aws elb help --debug
2013-07-23 16:03:16,782 - botocore.service - DEBUG - Creating service object for: elb
2013-07-23 16:03:16,782 - botocore.base - DEBUG - Attempting to load: aws/elb
2013-07-23 16:03:16,796 - botocore.base - DEBUG - Found data file: /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/botocore/data/aws/elb.json
2013-07-23 16:03:16,796 - botocore.hooks - DEBUG - Event service-created: calling handler <function register_retries_for_service at 0x1039cab90>
2013-07-23 16:03:16,796 - botocore.handlers - DEBUG - Registering retry handlers for service: Service(elasticloadbalancing)
2013-07-23 16:03:16,796 - botocore.service - DEBUG - Creating operation objects for: Service(elasticloadbalancing)
2013-07-23 16:03:16,799 - awscli.clidriver - DEBUG - Operation:ApplySecurityGroupsToLoadBalancer
2013-07-23 16:03:16,799 - awscli.clidriver - DEBUG - operation.name=ApplySecurityGroupsToLoadBalancer
2013-07-23 16:03:16,799 - awscli.clidriver - DEBUG - creating ServiceOperation: apply-security-groups-to-load-balancer
2013-07-23 16:03:16,799 - awscli.clidriver - DEBUG - Operation:AttachLoadBalancerToSubnets
2013-07-23 16:03:16,799 - awscli.clidriver - DEBUG - operation.name=AttachLoadBalancerToSubnets
2013-07-23 16:03:16,799 - awscli.clidriver - DEBUG - creating ServiceOperation: attach-load-balancer-to-subnets
2013-07-23 16:03:16,799 - awscli.clidriver - DEBUG - Operation:ConfigureHealthCheck
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - operation.name=ConfigureHealthCheck
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - creating ServiceOperation: configure-health-check
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - Operation:CreateAppCookieStickinessPolicy
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - operation.name=CreateAppCookieStickinessPolicy
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - creating ServiceOperation: create-app-cookie-stickiness-policy
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - Operation:CreateLBCookieStickinessPolicy
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - operation.name=CreateLBCookieStickinessPolicy
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - creating ServiceOperation: create-lb-cookie-stickiness-policy
2013-07-23 16:03:16,800 - awscli.clidriver - DEBUG - Operation:CreateLoadBalancer
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - operation.name=CreateLoadBalancer
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - creating ServiceOperation: create-load-balancer
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - Operation:CreateLoadBalancerListeners
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - operation.name=CreateLoadBalancerListeners
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - creating ServiceOperation: create-load-balancer-listeners
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - Operation:CreateLoadBalancerPolicy
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - operation.name=CreateLoadBalancerPolicy
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - creating ServiceOperation: create-load-balancer-policy
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - Operation:DeleteLoadBalancer
2013-07-23 16:03:16,801 - awscli.clidriver - DEBUG - operation.name=DeleteLoadBalancer
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - creating ServiceOperation: delete-load-balancer
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - Operation:DeleteLoadBalancerListeners
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - operation.name=DeleteLoadBalancerListeners
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - creating ServiceOperation: delete-load-balancer-listeners
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - Operation:DeleteLoadBalancerPolicy
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - operation.name=DeleteLoadBalancerPolicy
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - creating ServiceOperation: delete-load-balancer-policy
2013-07-23 16:03:16,802 - awscli.clidriver - DEBUG - Operation:DeregisterInstancesFromLoadBalancer
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - operation.name=DeregisterInstancesFromLoadBalancer
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - creating ServiceOperation: deregister-instances-from-load-balancer
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - Operation:DescribeInstanceHealth
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - operation.name=DescribeInstanceHealth
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - creating ServiceOperation: describe-instance-health
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - Operation:DescribeLoadBalancerPolicies
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - operation.name=DescribeLoadBalancerPolicies
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - creating ServiceOperation: describe-load-balancer-policies
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - Operation:DescribeLoadBalancerPolicyTypes
2013-07-23 16:03:16,803 - awscli.clidriver - DEBUG - operation.name=DescribeLoadBalancerPolicyTypes
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - creating ServiceOperation: describe-load-balancer-policy-types
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - Operation:DescribeLoadBalancers
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - operation.name=DescribeLoadBalancers
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - creating ServiceOperation: describe-load-balancers
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - Operation:DetachLoadBalancerFromSubnets
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - operation.name=DetachLoadBalancerFromSubnets
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - creating ServiceOperation: detach-load-balancer-from-subnets
2013-07-23 16:03:16,804 - awscli.clidriver - DEBUG - Operation:DisableAvailabilityZonesForLoadBalancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - operation.name=DisableAvailabilityZonesForLoadBalancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - creating ServiceOperation: disable-availability-zones-for-load-balancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - Operation:EnableAvailabilityZonesForLoadBalancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - operation.name=EnableAvailabilityZonesForLoadBalancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - creating ServiceOperation: enable-availability-zones-for-load-balancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - Operation:RegisterInstancesWithLoadBalancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - operation.name=RegisterInstancesWithLoadBalancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - creating ServiceOperation: register-instances-with-load-balancer
2013-07-23 16:03:16,805 - awscli.clidriver - DEBUG - Operation:SetLoadBalancerListenerSSLCertificate
2013-07-23 16:03:16,806 - awscli.clidriver - DEBUG - operation.name=SetLoadBalancerListenerSSLCertificate
2013-07-23 16:03:16,806 - awscli.clidriver - DEBUG - creating ServiceOperation: set-load-balancer-listener-ssl-certificate
2013-07-23 16:03:16,806 - awscli.clidriver - DEBUG - Operation:SetLoadBalancerPoliciesForBackendServer
2013-07-23 16:03:16,806 - awscli.clidriver - DEBUG - operation.name=SetLoadBalancerPoliciesForBackendServer
2013-07-23 16:03:16,806 - awscli.clidriver - DEBUG - creating ServiceOperation: set-load-balancer-policies-for-backend-server
2013-07-23 16:03:16,806 - awscli.clidriver - DEBUG - Operation:SetLoadBalancerPoliciesOfListener
2013-07-23 16:03:16,806 - awscli.clidriver - DEBUG - operation.name=SetLoadBalancerPoliciesOfListener
2013-07-23 16:03:16,807 - awscli.clidriver - DEBUG - creating ServiceOperation: set-load-balancer-policies-of-listener
2013-07-23 16:03:16,807 - botocore.hooks - DEBUG - Event doc-title.Service.elasticloadbalancing: calling handler <bound method ServiceDocumentEventHandler.doc_title of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,808 - botocore.hooks - DEBUG - Event doc-description.Service.elasticloadbalancing: calling handler <bound method ServiceDocumentEventHandler.doc_description of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,809 - botocore.hooks - DEBUG - Event doc-subitems-start.Service.elasticloadbalancing: calling handler <bound method ServiceDocumentEventHandler.doc_subitems_start of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,809 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.apply-security-groups-to-load-balancer: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,809 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.attach-load-balancer-to-subnets: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,809 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.configure-health-check: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,809 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.create-app-cookie-stickiness-policy: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,809 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.create-lb-cookie-stickiness-policy: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,809 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.create-load-balancer: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.create-load-balancer-listeners: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.create-load-balancer-policy: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.delete-load-balancer: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.delete-load-balancer-listeners: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.delete-load-balancer-policy: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.deregister-instances-from-load-balancer: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.describe-instance-health: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.describe-load-balancer-policies: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.describe-load-balancer-policy-types: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,810 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.describe-load-balancers: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.detach-load-balancer-from-subnets: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.disable-availability-zones-for-load-balancer: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.enable-availability-zones-for-load-balancer: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.register-instances-with-load-balancer: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.set-load-balancer-listener-ssl-certificate: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.set-load-balancer-policies-for-backend-server: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.set-load-balancer-policies-of-listener: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,811 - botocore.hooks - DEBUG - Event doc-subitem.Service.elasticloadbalancing.help: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x103c30a10>>
2013-07-23 16:03:16,818 - awscli.clidriver - DEBUG - Exception caught in main()
Traceback (most recent call last):
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 177, in main
return command_table[parsed_args.command](remaining, parsed_args)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 270, in __call__
return command_table[parsed_args.operation](remaining, parsed_globals)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 194, in __call__
self.renderer.render(self.doc.fp.getvalue())
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 65, in render
p2 = Popen(cmdline, stdin=PIPE, stdout=PIPE)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 711, in __init__
errread, errwrite)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1308, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
2013-07-23 16:03:16,819 - awscli.clidriver - DEBUG - Exiting with rc 255
[Errno 2] No such file or directory
To create the man page, a pipeline is executed that calls rst2man.py
and pipes the output to groff
for display. The error suggests that at least one of those programs cannot be found in your path.
Could you try doing a which rst2man.py
and which groff
and report back the results?
Here's the output from those commands:
$ which rst2man.py
/usr/local/share/python/rst2man.py
$ which groff
/usr/bin/groff
...and here are the privileges:
$ ls -al /usr/local/share/python/rst2m*
-rwxr-xr-x 1 brettf admin 698 Jul 22 13:44 /usr/local/share/python/rst2man.py
$ ls -al /usr/bin/groff*
-rwxr-xr-x 1 root wheel 76448 Sep 7 2012 /usr/bin/groff
-rwxr-xr-x 1 root wheel 7074 Sep 7 2012 /usr/bin/groffer
and just for the record, my userId is brettf
Are you still having this issue? I've been unable to reproduce.
Closing for now. Re-open if this is still a problem.
Just tried again with 0.14.1 and this still occurs for me. Here's the updated debug output. Are you using Homebrew installed Python?
brettf@[machine-name]:~ $ aws ec2 help
[Errno 2] No such file or directory
brettf@[machine-name]:~ $ aws ec2 help --debug
2013-08-21 15:06:52,381 - botocore.service - DEBUG - Creating service object for: ec2
2013-08-21 15:06:52,381 - botocore.base - DEBUG - Attempting to load: aws/ec2
2013-08-21 15:06:52,484 - botocore.base - DEBUG - Found data file: /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/botocore/data/aws/ec2.json
2013-08-21 15:06:52,485 - botocore.hooks - DEBUG - Event service-created: calling handler <function register_retries_for_service at 0x10170ef50>
2013-08-21 15:06:52,485 - botocore.handlers - DEBUG - Registering retry handlers for service: Service(ec2)
2013-08-21 15:06:52,485 - botocore.service - DEBUG - Creating operation objects for: Service(ec2)
2013-08-21 15:06:52,499 - botocore.hooks - DEBUG - Event building-command-table.ec2: calling handler <functools.partial object at 0x101926890>
2013-08-21 15:06:52,499 - awscli.customizations.removals - DEBUG - Removing operation: import-instance
2013-08-21 15:06:52,499 - awscli.customizations.removals - DEBUG - Removing operation: import-volume
2013-08-21 15:06:52,500 - botocore.hooks - DEBUG - Event doc-title.Service.ec2: calling handler <bound method ServiceDocumentEventHandler.doc_title of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,500 - botocore.hooks - DEBUG - Event doc-description.Service.ec2: calling handler <bound method ServiceDocumentEventHandler.doc_description of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitems-start.Service.ec2: calling handler <bound method ServiceDocumentEventHandler.doc_subitems_start of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.activate-license: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.allocate-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.assign-private-ip-addresses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.associate-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.associate-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.associate-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.authorize-security-group-egress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.authorize-security-group-ingress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.bundle-instance: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-bundle-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-conversion-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-export-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-reserved-instances-listing: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-spot-instance-requests: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.confirm-product-instance: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.copy-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.copy-snapshot: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-customer-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-instance-export-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-key-pair: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-network-acl: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-network-acl-entry: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-placement-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-reserved-instances-listing: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-security-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-snapshot: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-spot-datafeed-subscription: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-subnet: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-tags: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpc: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpn-connection: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpn-connection-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.deactivate-license: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-customer-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-key-pair: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-network-acl: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-network-acl-entry: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-placement-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-security-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-snapshot: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-spot-datafeed-subscription: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-subnet: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-tags: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpc: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpn-connection: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpn-connection-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.deregister-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-account-attributes: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-addresses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-availability-zones: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-bundle-tasks: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-conversion-tasks: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-customer-gateways: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-export-tasks: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-image-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-images: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-instance-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-instance-status: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-internet-gateways: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-key-pairs: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-licenses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-network-acls: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-network-interface-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-network-interfaces: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-placement-groups: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-regions: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-reserved-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-reserved-instances-listings: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-reserved-instances-offerings: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-route-tables: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-security-groups: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-snapshot-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-snapshots: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-spot-datafeed-subscription: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-spot-instance-requests: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-spot-price-history: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-subnets: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-tags: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-volume-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-volume-status: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-volumes: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpc-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpcs: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpn-connections: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpn-gateways: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.disable-vgw-route-propagation: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.disassociate-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.disassociate-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.enable-vgw-route-propagation: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.enable-volume-io: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.get-console-output: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.get-password-data: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.import-key-pair: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-image-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-instance-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-network-interface-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-snapshot-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-volume-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-vpc-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.monitor-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.purchase-reserved-instances-offering: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reboot-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.register-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.release-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-network-acl-association: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-network-acl-entry: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-route-table-association: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.report-instance-status: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.request-spot-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-image-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-instance-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-network-interface-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-snapshot-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.revoke-security-group-egress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.revoke-security-group-ingress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.run-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.start-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.stop-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.terminate-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.unassign-private-ip-addresses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.unmonitor-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.help: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x101da58d0>>
2013-08-21 15:06:52,517 - awscli.help - DEBUG - Running command: ['rst2man.py']
2013-08-21 15:06:52,522 - awscli.clidriver - DEBUG - Exception caught in main()
Traceback (most recent call last):
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 178, in main
return command_table[parsed_args.command](remaining, parsed_args)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 271, in __call__
return command_table[parsed_args.operation](remaining, parsed_globals)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 200, in __call__
self.renderer.render(self.doc.getvalue())
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 69, in render
p2 = Popen(cmdline, stdin=PIPE, stdout=PIPE)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 711, in __init__
errread, errwrite)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1308, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
2013-08-21 15:06:52,524 - awscli.clidriver - DEBUG - Exiting with rc 255
[Errno 2] No such file or directory
brettf@[machine-name]:~ $ aws --version
aws-cli/0.14.1 Python/2.7.5 Darwin/12.4.0
Do you have PAGER or MANPAGER environment variables set? If so, what are
the values?
On Wed, Aug 21, 2013 at 3:40 PM, Brett Francis [email protected]:
Just tried again with 0.14.1 and this still occurs for me. Here's the
updated debug output. Are you using Homebrew installed Python?brettf@[machine-name]:~ $ aws ec2 help
[Errno 2] No such file or directory
brettf@[machine-name]:~ $ aws ec2 help --debug
2013-08-21 15:06:52,381 - botocore.service - DEBUG - Creating service object for: ec2
2013-08-21 15:06:52,381 - botocore.base - DEBUG - Attempting to load: aws/ec2
2013-08-21 15:06:52,484 - botocore.base - DEBUG - Found data file: /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/botocore/data/aws/ec2.json
2013-08-21 15:06:52,485 - botocore.hooks - DEBUG - Event service-created: calling handler
2013-08-21 15:06:52,485 - botocore.handlers - DEBUG - Registering retry handlers for service: Service(ec2)
2013-08-21 15:06:52,485 - botocore.service - DEBUG - Creating operation objects for: Service(ec2)
2013-08-21 15:06:52,499 - botocore.hooks - DEBUG - Event building-command-table.ec2: calling handler
2013-08-21 15:06:52,499 - awscli.customizations.removals - DEBUG - Removing operation: import-instance
2013-08-21 15:06:52,499 - awscli.customizations.removals - DEBUG - Removing operation: import-volume
2013-08-21 15:06:52,500 - botocore.hooks - DEBUG - Event doc-title.Service.ec2: calling handler>
2013-08-21 15:06:52,500 - botocore.hooks - DEBUG - Event doc-description.Service.ec2: calling handler>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitems-start.Service.ec2: calling handler>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.activate-license: calling handler>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.allocate-address: calling handler>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.assign-private-ip-addresses: calling handler>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.associate-address: calling handler>
2013-08-21 15:06:52,501 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.associate-dhcp-options: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.associate-route-table: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-internet-gateway: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-network-interface: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-volume: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.attach-vpn-gateway: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.authorize-security-group-egress: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.authorize-security-group-ingress: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.bundle-instance: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-bundle-task: calling handler>
2013-08-21 15:06:52,502 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-conversion-task: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-export-task: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-reserved-instances-listing: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.cancel-spot-instance-requests: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.confirm-product-instance: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.copy-image: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.copy-snapshot: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-customer-gateway: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-dhcp-options: calling handler>
2013-08-21 15:06:52,503 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-image: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-instance-export-task: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-internet-gateway: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-key-pair: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-network-acl: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-network-acl-entry: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-network-interface: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-placement-group: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-reserved-instances-listing: calling handler>
2013-08-21 15:06:52,504 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-route: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-route-table: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-security-group: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-snapshot: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-spot-datafeed-subscription: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-subnet: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-tags: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-volume: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpc: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpn-connection: calling handler>
2013-08-21 15:06:52,505 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpn-connection-route: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.create-vpn-gateway: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.deactivate-license: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-customer-gateway: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-dhcp-options: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-internet-gateway: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-key-pair: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-network-acl: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-network-acl-entry: calling handler>
2013-08-21 15:06:52,506 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-network-interface: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-placement-group: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-route: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-route-table: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-security-group: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-snapshot: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-spot-datafeed-subscription: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-subnet: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-tags: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-volume: calling handler>
2013-08-21 15:06:52,507 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpc: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpn-connection: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpn-connection-route: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.delete-vpn-gateway: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.deregister-image: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-account-attributes: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-addresses: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-availability-zones: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-bundle-tasks: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-conversion-tasks: calling handler>
2013-08-21 15:06:52,508 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-customer-gateways: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-dhcp-options: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-export-tasks: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-image-attribute: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-images: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-instance-attribute: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-instance-status: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-instances: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-internet-gateways: calling handler>
2013-08-21 15:06:52,509 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-key-pairs: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-licenses: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-network-acls: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-network-interface-attribute: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-network-interfaces: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-placement-groups: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-regions: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-reserved-instances: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-reserved-instances-listings: calling handler>
2013-08-21 15:06:52,510 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-reserved-instances-offerings: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-route-tables: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-security-groups: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-snapshot-attribute: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-snapshots: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-spot-datafeed-subscription: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-spot-instance-requests: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-spot-price-history: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-subnets: calling handler>
2013-08-21 15:06:52,511 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-tags: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-volume-attribute: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-volume-status: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-volumes: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpc-attribute: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpcs: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpn-connections: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.describe-vpn-gateways: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-internet-gateway: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-network-interface: calling handler>
2013-08-21 15:06:52,512 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-volume: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.detach-vpn-gateway: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.disable-vgw-route-propagation: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.disassociate-address: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.disassociate-route-table: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.enable-vgw-route-propagation: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.enable-volume-io: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.get-console-output: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.get-password-data: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.import-key-pair: calling handler>
2013-08-21 15:06:52,513 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-image-attribute: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-instance-attribute: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-network-interface-attribute: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-snapshot-attribute: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-volume-attribute: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.modify-vpc-attribute: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.monitor-instances: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.purchase-reserved-instances-offering: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reboot-instances: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.register-image: calling handler>
2013-08-21 15:06:52,514 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.release-address: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-network-acl-association: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-network-acl-entry: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-route: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.replace-route-table-association: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.report-instance-status: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.request-spot-instances: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-image-attribute: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-instance-attribute: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-network-interface-attribute: calling handler>
2013-08-21 15:06:52,515 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.reset-snapshot-attribute: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.revoke-security-group-egress: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.revoke-security-group-ingress: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.run-instances: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.start-instances: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.stop-instances: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.terminate-instances: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.unassign-private-ip-addresses: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.unmonitor-instances: calling handler>
2013-08-21 15:06:52,516 - botocore.hooks - DEBUG - Event doc-subitem.Service.ec2.help: calling handler>
2013-08-21 15:06:52,517 - awscli.help - DEBUG - Running command: ['rst2man.py']
2013-08-21 15:06:52,522 - awscli.clidriver - DEBUG - Exception caught in main()
Traceback (most recent call last):
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 178, in main
return command_tableparsed_args.command
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 271, in call
return command_tableparsed_args.operation
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 200, in call
self.renderer.render(self.doc.getvalue())
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 69, in render
p2 = Popen(cmdline, stdin=PIPE, stdout=PIPE)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 711, in init
errread, errwrite)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1308, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
2013-08-21 15:06:52,524 - awscli.clidriver - DEBUG - Exiting with rc 255
[Errno 2] No such file or directory
brettf@[machine-name]:~ $ aws --version
aws-cli/0.14.1 Python/2.7.5 Darwin/12.4.0聴
Reply to this email directly or view it on GitHubhttps://github.com/aws/aws-cli/issues/143#issuecomment-23056114
.
I'm not sure why, and I can't reproduce this, but the pipe is failing because it can't find rst2man.py
.
I believe #279 fixes this, if not it should provide better error messages. Closing for now, let us know if you're still having issues.
Just updated to 0.15 and this is still happening. Here's the (new) debug output.
$ aws ec2 help
[Errno 2] No such file or directory
$ aws ec2 help --debug
2013-08-29 12:21:24,979 - botocore.service - DEBUG - Creating service object for: ec2
2013-08-29 12:21:24,980 - botocore.base - DEBUG - Attempting to load: aws/ec2
2013-08-29 12:21:25,087 - botocore.base - DEBUG - Found data file: /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/botocore/data/aws/ec2.json
2013-08-29 12:21:25,087 - botocore.hooks - DEBUG - Event service-created: calling handler <function register_retries_for_service at 0x1022c68c0>
2013-08-29 12:21:25,087 - botocore.handlers - DEBUG - Registering retry handlers for service: Service(ec2)
2013-08-29 12:21:25,087 - botocore.service - DEBUG - Creating operation objects for: Service(ec2)
2013-08-29 12:21:25,103 - botocore.hooks - DEBUG - Event building-command-table.ec2: calling handler <functools.partial object at 0x1025121b0>
2013-08-29 12:21:25,103 - awscli.customizations.removals - DEBUG - Removing operation: import-instance
2013-08-29 12:21:25,103 - awscli.customizations.removals - DEBUG - Removing operation: import-volume
2013-08-29 12:21:25,104 - botocore.hooks - DEBUG - Event doc-title.Operation.ec2: calling handler <bound method ServiceDocumentEventHandler.doc_title of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,104 - botocore.hooks - DEBUG - Event doc-description.Operation.ec2: calling handler <bound method ServiceDocumentEventHandler.doc_description of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,105 - botocore.hooks - DEBUG - Event doc-subitems-start.Operation.ec2: calling handler <bound method ServiceDocumentEventHandler.doc_subitems_start of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,105 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.activate-license: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,105 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.allocate-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,105 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.assign-private-ip-addresses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,105 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.associate-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.associate-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.associate-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.attach-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.attach-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.attach-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.attach-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.authorize-security-group-egress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.authorize-security-group-ingress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.bundle-instance: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,106 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.cancel-bundle-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.cancel-conversion-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.cancel-export-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.cancel-reserved-instances-listing: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.cancel-spot-instance-requests: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.confirm-product-instance: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.copy-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.copy-snapshot: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-customer-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,107 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-instance-export-task: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-key-pair: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-network-acl: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-network-acl-entry: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-placement-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-reserved-instances-listing: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,108 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-security-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-snapshot: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-spot-datafeed-subscription: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-subnet: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-tags: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-vpc: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,109 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-vpn-connection: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-vpn-connection-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.create-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.deactivate-license: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-customer-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-key-pair: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-network-acl: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,110 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-network-acl-entry: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-placement-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-security-group: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-snapshot: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-spot-datafeed-subscription: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,111 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-subnet: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-tags: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-vpc: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-vpn-connection: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-vpn-connection-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.delete-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.deregister-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-account-attributes: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,112 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-addresses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-availability-zones: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-bundle-tasks: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-conversion-tasks: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-customer-gateways: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-dhcp-options: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-export-tasks: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-image-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-images: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-instance-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,113 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-instance-status: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-internet-gateways: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-key-pairs: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-licenses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-network-acls: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-network-interface-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-network-interfaces: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-placement-groups: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,114 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-regions: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-reserved-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-reserved-instances-listings: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-reserved-instances-offerings: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-route-tables: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-security-groups: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-snapshot-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-snapshots: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-spot-datafeed-subscription: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-spot-instance-requests: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,115 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-spot-price-history: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-subnets: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-tags: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-volume-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-volume-status: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-volumes: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-vpc-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-vpcs: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-vpn-connections: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,116 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.describe-vpn-gateways: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.detach-internet-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.detach-network-interface: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.detach-volume: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.detach-vpn-gateway: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.disable-vgw-route-propagation: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.disassociate-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.disassociate-route-table: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.enable-vgw-route-propagation: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.enable-volume-io: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,117 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.get-console-output: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.get-password-data: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.import-key-pair: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.modify-image-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.modify-instance-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.modify-network-interface-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.modify-snapshot-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.modify-volume-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.modify-vpc-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,118 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.monitor-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.purchase-reserved-instances-offering: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.reboot-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.register-image: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.release-address: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.replace-network-acl-association: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.replace-network-acl-entry: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.replace-route: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.replace-route-table-association: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,119 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.report-instance-status: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.request-spot-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.reset-image-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.reset-instance-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.reset-network-interface-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.reset-snapshot-attribute: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.revoke-security-group-egress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.revoke-security-group-ingress: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.run-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.start-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,120 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.stop-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,121 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.terminate-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,121 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.unassign-private-ip-addresses: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,121 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.unmonitor-instances: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,121 - botocore.hooks - DEBUG - Event doc-subitem.Operation.ec2.help: calling handler <bound method ServiceDocumentEventHandler.doc_subitem of <bcdoc.clidocs.ServiceDocumentEventHandler object at 0x1029851d0>>
2013-08-29 12:21:25,121 - botocore.hooks - DEBUG - Event doc-examples.Operation.ec2: calling handler <function add_examples at 0x1024c5758>
2013-08-29 12:21:25,121 - awscli.customizations.addexamples - DEBUG - Looking for example file at: /usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/examples/Operation/ec2.rst
2013-08-29 12:21:25,122 - awscli.help - DEBUG - Running command: ['rst2man.py']
2013-08-29 12:21:25,129 - awscli.clidriver - DEBUG - Exception caught in main()
Traceback (most recent call last):
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 185, in main
return command_table[parsed_args.command](remaining, parsed_args)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/clidriver.py", line 305, in __call__
return command_table[parsed_args.operation](remaining, parsed_globals)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 199, in __call__
self.renderer.render(self.doc.getvalue())
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/awscli/help.py", line 80, in render
p2 = Popen(cmdline, stdin=PIPE, stdout=PIPE)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 711, in __init__
errread, errwrite)
File "/usr/local/Cellar/python/2.7.5/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1308, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
2013-08-29 12:21:25,131 - awscli.clidriver - DEBUG - Exiting with rc 255
[Errno 2] No such file or directory
$ aws --version
aws-cli/0.15.0 Python/2.7.5 Darwin/12.4.0````
Could you try against the develop branch? The fix from #279 is not in a release yet.
I had the same error here. Even with aws-cli version 1.0 (installed using pip) it would give the exact same error as above. I discovered that I had installed rst2man.py through easy_install, which was pointing to a nonexistent Python framework (mine had the first line ponting to "#!/usr/local/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python" )
I fixed that to point to the python 2.7 that I installed through homebrew (now in /usr/local/opt/python/bin/python2.7), and it now works perfectly.
Thanks @nogara that resolved my issue as well. I modified the /usr/local/share/python/rst2man.py
file's contents to point to Python with this entry #!/usr/local/bin/python2.7
and now I get docs when typing aws ec2 help
and other commands. I am also using homebrew for as much of my package management as possible.
I'm glad you were able to get this working.
We've seen that shelling out to rst2man.py
is problematic because different distros place this executable in different places (and sometimes even rename the script). Because of this, we've changed the doc rendering code to not shell out to rst2man.py
(see https://github.com/aws/aws-cli/pull/329 and https://github.com/aws/aws-cli/issues/322). This will go out in the next release.
I realize this doesn't help those who have already run into these issues, but after the next release, hopefully this problem is no longer an issue.
This is probably not the OP's problem, but just to anyone that stumbles across this thread, less is required to use aws... So, apt-get install less or whatever you have to do to install this package on your OS.
I had this problem with aws help
after running pip install awscli
on an Ubuntu Docker image. I fixed it with apt-get install groff
.
I am still unable to resolve this aws help erring out. It opens a new vi file at the end.
When did a debug, groff was the last command.
aws --debug help
2016-05-02 12:47:23,056 - MainThread - awscli.clidriver - DEBUG - CLI version: aws-cli/1.10.24 Python/2.7.10 CYGWIN_NT-6.1-WOW/2.3.1(0.291/5/3) botocore/1.4.15
2016-05-02 12:47:23,056 - MainThread - awscli.clidriver - DEBUG - Arguments entered to CLI: ['--debug', 'help']
2016-05-02 12:47:23,056 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler
2016-05-02 12:47:23,056 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler
2016-05-02 12:47:23,056 - MainThread - botocore.credentials - DEBUG - Skipping environment variable credential check because profile name was explicitly set.
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-breadcrumbs.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-title.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-description.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-description.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-start.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.debug: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.endpoint-url: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.no-verify-ssl: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.no-paginate: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.output: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.query: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.profile: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.region: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.version: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.color: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.no-sign-request: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.ca-bundle: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.cli-read-timeout: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.cli-connect-timeout: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-end.aws: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-options-start.aws: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.debug: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.endpoint-url: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.no-verify-ssl: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.no-paginate: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.output: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.query: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.profile: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.region: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.version: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.color: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.no-sign-request: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.ca-bundle: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.cli-read-timeout: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.cli-connect-timeout: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitems-start.aws: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.acm: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.apigateway: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.autoscaling: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudformation: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudfront: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudhsm: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudsearch: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudsearchdomain: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudtrail: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudwatch: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.codecommit: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.codepipeline: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cognito-identity: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cognito-idp: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cognito-sync: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.configservice: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.configure: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.datapipeline: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.deploy: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.devicefarm: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.directconnect: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.dms: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ds: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.dynamodb: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.dynamodbstreams: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ec2: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ecr: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ecs: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.efs: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elasticache: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elasticbeanstalk: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elastictranscoder: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elb: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.emr: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.es: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.events: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.firehose: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.gamelift: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.glacier: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.help: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.iam: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.importexport: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.inspector: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.iot: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.iot-data: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.kinesis: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.kms: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.lambda: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.logs: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.machinelearning: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.marketplacecommerceanalytics: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.meteringmarketplace: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.opsworks: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.rds: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.redshift: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.route53: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.route53domains: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.s3: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.s3api: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.sdb: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ses: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.sns: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.sqs: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ssm: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.storagegateway: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.sts: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.support: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.swf: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.waf: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.workspaces: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-relateditems-start.aws: calling handler
2016-05-02 12:47:23,066 - MainThread - botocore.hooks - DEBUG - Event doc-relateditem.aws.aws help topics: calling handler
2016-05-02 12:47:23,507 - MainThread - awscli.help - DEBUG - Running command: ['groff', '-m', 'man', '-T', 'ascii']
After sometime, it opened up a input session, when scrolled up till above, this is what i found.
aws --debug help
2016-05-02 12:47:23,056 - MainThread - awscli.clidriver - DEBUG - CLI version: aws-cli/1.10.24 Python/2.7.10 CYGWIN_NT-6.1-WOW/2.3.1(0.291/5/3) botocore/1.4.15
2016-05-02 12:47:23,056 - MainThread - awscli.clidriver - DEBUG - Arguments entered to CLI: ['--debug', 'help']
2016-05-02 12:47:23,056 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler
2016-05-02 12:47:23,056 - MainThread - botocore.hooks - DEBUG - Event session-initialized: calling handler
2016-05-02 12:47:23,056 - MainThread - botocore.credentials - DEBUG - Skipping environment variable credential check because profile name was explicitly set.
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-breadcrumbs.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-title.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-description.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-description.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-start.aws: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.debug: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.endpoint-url: calling handler
2016-05-02 12:47:23,057 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.no-verify-ssl: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.no-paginate: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.output: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.query: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.profile: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.region: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.version: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.color: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.no-sign-request: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.ca-bundle: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.cli-read-timeout: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-option.aws.cli-connect-timeout: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-synopsis-end.aws: calling handler
2016-05-02 12:47:23,058 - MainThread - botocore.hooks - DEBUG - Event doc-options-start.aws: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.debug: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.endpoint-url: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.no-verify-ssl: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.no-paginate: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.output: calling handler
2016-05-02 12:47:23,059 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.query: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.profile: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.region: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.version: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.color: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.no-sign-request: calling handler
2016-05-02 12:47:23,060 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.ca-bundle: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.cli-read-timeout: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-option.aws.cli-connect-timeout: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitems-start.aws: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.acm: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.apigateway: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.autoscaling: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudformation: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudfront: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudhsm: calling handler
2016-05-02 12:47:23,061 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudsearch: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudsearchdomain: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudtrail: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cloudwatch: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.codecommit: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.codepipeline: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cognito-identity: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cognito-idp: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.cognito-sync: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.configservice: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.configure: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.datapipeline: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.deploy: calling handler
2016-05-02 12:47:23,062 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.devicefarm: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.directconnect: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.dms: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ds: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.dynamodb: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.dynamodbstreams: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ec2: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ecr: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.ecs: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.efs: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elasticache: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elasticbeanstalk: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elastictranscoder: calling handler
2016-05-02 12:47:23,063 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.elb: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.emr: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.es: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.events: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.firehose: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.gamelift: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.glacier: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.help: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.iam: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.importexport: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.inspector: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.iot: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.iot-data: calling handler
2016-05-02 12:47:23,064 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.kinesis: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.kms: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.lambda: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.logs: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.machinelearning: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.marketplacecommerceanalytics: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.meteringmarketplace: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.opsworks: calling handler
2016-05-02 12:47:23,065 - MainThread - botocore.hooks - DEBUG - Event doc-subitem.aws.rds: calling handler
Most helpful comment
I had this problem with
aws help
after runningpip install awscli
on an Ubuntu Docker image. I fixed it withapt-get install groff
.