From 64f685ad635a78ef4e1cb237652425c818219532 Mon Sep 17 00:00:00 2001 From: Matt Joyce Date: Tue, 29 May 2012 14:29:45 -0700 Subject: [PATCH] minor fixes Change-Id: Ib5601e1a932e0bfaa0341909416415d1e81ee915 --- README.rst | 2 +- openstackclient/common/exceptions.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 0078147f1..1f022a706 100644 --- a/README.rst +++ b/README.rst @@ -115,7 +115,7 @@ The source is maintained in the ``docs/source`` folder using $ export DJANGO_SETTINGS_MODULE=local.local_settings $ python doc/generate_autodoc_index.py - $ sphinx-build -b html doc/source build/sphinx/html + $ sphinx-build -b html docs/source build/sphinx/html Results are in the `build/sphinx/html` directory diff --git a/openstackclient/common/exceptions.py b/openstackclient/common/exceptions.py index aa070b376..465c3c484 100644 --- a/openstackclient/common/exceptions.py +++ b/openstackclient/common/exceptions.py @@ -128,7 +128,7 @@ _code_map = dict((c.http_status, c) for c in [BadRequest, Unauthorized, def from_response(response, body): """ - Return an instance of an ClientException or subclass + Return an instance of a ClientException or subclass based on an httplib2 response. Usage:: diff --git a/setup.py b/setup.py index 8e9d024c6..3bce07393 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setuptools.setup( url='https://github.com/openstack/python-openstackclient', license="Apache License, Version 2.0", author='OpenStack Client Contributors', - author_email='openstackclient@example.com', + author_email='openstack@lists.launchpad.net', packages=setuptools.find_packages(exclude=['tests', 'tests.*']), classifiers=[ 'Development Status :: 2 - Pre-Alpha',