summaryrefslogtreecommitdiff
path: root/cinderclient/shell_utils.py
Commit message (Collapse)AuthorAgeFilesLines
* Add print_function importMichael Dovgal2017-01-271-0/+2
| | | | | | | | As in PY2 and PY3 we have different result after calling print, add print_function import to have the same behaviour when using empty print. Change-Id: I59c644d196805bb8a2592fc84a839c7a75d78f1a
* Merge "Fix spelling of consistency groups"Jenkins2017-01-201-1/+1
|\
| * Fix spelling of consistency groupsPetr Kovar2017-01-181-1/+1
| | | | | | | | | | | | Trivial fixes making the consistency group spelling more consistent. Change-Id: I3716606a5415f2cbf966749de17b512c347b1790
* | Add convertation of query parameters to stringMykhailo Dovgal2016-12-301-2/+4
|/ | | | | | | | | | | | | There are some problems with non-ascii chars and special symbols during using cinderclient. This patch closes bug connected with parse.urlencode py27 unicode encode bug by adding convertation of query parameters before creating query string in manager._build_list_url method. Also it fix the problems with encoding in quota commands. Change-Id: I96269cca7ad203eaad02d87b30c16d970b26b25f Closes-Bug: #1636621 Closes-Bug: #1518141
* Refactor v2 and v3 APIs supportIvan Kolodyazhny2016-12-201-0/+247
Now v2 API uses code from v3. It's confusing and logically incorrect. This patch makes v3 API as an extended version of v2. The next patches related to this bug duplicated code between v1 and v2, v2 and v3 will be removed. Change-Id: I90a2b713556e91db69270a03ef6b798e08f93f90 Partial-Bug: #1643584