From dd90c73f334200cf7f60fd136975d5f7f12d9a4b Mon Sep 17 00:00:00 2001 From: Keegan McAllister Date: Mon, 3 Dec 2012 15:38:25 -0500 Subject: [PATCH] Fix module and class name in api/README (imported from commit c5157d52479ef0e1f26c471df79ffb9c5ea7f51e) --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index 2e30e01..928553f 100644 --- a/README +++ b/README @@ -24,8 +24,8 @@ A typical simple bot sending API messages will look as follows: At the top of the file: # Make sure the Humbug API distribution's root directory is in sys.path, then: - import api.common - humbug_client = api.common.HumbugAPI(email="your_email@example.com") + import humbug + humbug_client = humbug.Client(email="your_email@example.com") When you want to send a message: