summaryrefslogtreecommitdiff
path: root/glanceclient/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Enable flake8 checksDarja Shakhray2015-07-211-1/+1
| | | | | | | | | | | | This commit enables new flake8 checks: * E265 block comment should start with '# ' * H405 multi line docstring summary not separated with an empty line * E123 closing bracket does not match indentation of opening bracket's line * H238 old style class declaration, use new style (inherit from `object`) * E128 continuation line under-indented for visual indent and makes related changes in the code. Change-Id: Ie993afc930f6b74d7a990bcaa9fc0e9f5ba1585c
* Remove vim headerNoboru arai2014-01-141-2/+0
| | | | | | | | | | | No need to set tabstop tons of times, this can be set in your vimrc file instead. More disucssion: http://openstack.10931.n7.nabble.com/Remove-vim-modelines-td21780.html Change-Id: I2b37758f9dbb2cad6457a879d4ed7ff0aa69ef8e Partial-Bug: #1229324
* Replace OpenStack LLC with OpenStack FoundationZhiQiang Fan2013-09-201-1/+1
| | | | | Change-Id: I38dcbcf1a6c8efe540fcf5f29e782cb3826e583d Fixes-Bug: #1214176
* Migrate to pbr.Monty Taylor2013-05-181-4/+2
| | | | | | Fixes bug 1179007. Change-Id: I99d571bbf37ef53366a96de088c249cb6fd23b0e
* Fix problem running glance --versionDavanum Srinivas2013-04-051-1/+8
| | | | | | | | __version__ should point to a string and not VersionInfo Fixes LP# 1164760 Change-Id: I27d366af5ed89d0931ef46eb1507e6ba0eec0b6e
* Update to latest oslo-version.Monty Taylor2013-02-071-19/+2
| | | | | | Remove the need for versioninfo file and just use python's PKG-INFO. Change-Id: I4765141e9bf3fa075dfbbc6a07e495c29e12177b
* added --version as new parameterChristian Berendt2012-11-131-2/+19
| | | | | fixes bug 1056504 Change-Id: Ib28e3941006b46553001d7895d5ddf4b0f9c540d
* Establish the supported importable interfaceBrian Waldon2012-07-131-2/+11
| | | | | | | | | | | | | * Consumers of this client should not depend on being able to import any module other than glanceclient and glanceclient * The only attributs of the glanceclient module are Client and __version__ * The attributes of the glanceclient.exc modules have yet to be locked down * glanceclient.common.exceptions was replaced with a placeholder module until consumers of it are updated Change-Id: Iea9648cd06906d65764987c1f2ee5a88ebeee748
* Add ability to get version information in pythonMonty Taylor2012-07-111-0/+19
| | | | | | | | * A user can access glanceclient.__version__ to get a string representing the version of the installed library. * Add openstack-common's 'version' module. Change-Id: Ib14c561d8ac0b126617a20acfbd5fdb61c54f2c7
* Initial checkin for new CLI and client packageJay Pipes2012-02-291-0/+0
Copied mostly from python-keystoneclient with some Glance-specific stuff. README.rst shows what WILL be the way to do things, not what is currently coded :)