From 1e21f67488da42d9ac975640692f3562f12f5b7b Mon Sep 17 00:00:00 2001 From: Mitch Garnaat Date: Thu, 21 Nov 2013 10:52:27 -0800 Subject: [PATCH] Removing references to bcdoc.clidocs. --- awscli/customizations/commands.py | 2 +- awscli/customizations/s3/dochandler.py | 3 +-- examples/new_command.py | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/awscli/customizations/commands.py b/awscli/customizations/commands.py index 2b6594a15050..e02774c9669a 100644 --- a/awscli/customizations/commands.py +++ b/awscli/customizations/commands.py @@ -1,6 +1,6 @@ -from bcdoc.clidocs import CLIDocumentEventHandler import bcdoc.clidocevents +from awscli.clidocs import CLIDocumentEventHandler from awscli.argparser import ArgTableArgParser from awscli.clidriver import CLICommand from awscli.arguments import CustomArgument diff --git a/awscli/customizations/s3/dochandler.py b/awscli/customizations/s3/dochandler.py index e17e6dda1d08..0e150f43e589 100644 --- a/awscli/customizations/s3/dochandler.py +++ b/awscli/customizations/s3/dochandler.py @@ -1,8 +1,7 @@ import os -from bcdoc.clidocs import CLIDocumentEventHandler - import awscli +from awscli.clidocs import CLIDocumentEventHandler class S3DocumentEventHandler(CLIDocumentEventHandler): diff --git a/examples/new_command.py b/examples/new_command.py index e2baae097d86..053f4dcce0ce 100644 --- a/examples/new_command.py +++ b/examples/new_command.py @@ -17,8 +17,7 @@ from awscli.clidriver import BuiltInCommand from awscli.help import HelpCommand from awscli.argparser import ServiceArgParser -from bcdoc.clidocs import CLIDocumentEventHandler -import bcdoc.clidocevents +from awscli.clidocs import CLIDocumentEventHandler class ConfigDocumentEventHandler(CLIDocumentEventHandler):