summaryrefslogtreecommitdiff
path: root/releasenotes/notes/remove-case-dependency-773ccb3237c38e81.yaml
diff options
context:
space:
mode:
authorreedip <reedip.banerjee@nectechnologies.in>2016-03-01 14:29:24 +0900
committerReedip <reedip.banerjee@nectechnologies.in>2016-08-25 03:49:36 +0000
commitc33b041c0c20b8078dad0f4cdca7c9b2177a122f (patch)
tree4600d76eab16b9f3da152f1f7f9372b818d82c79 /releasenotes/notes/remove-case-dependency-773ccb3237c38e81.yaml
parent64e8c3e21a4b75bbcd177d70e93c916068f5308e (diff)
downloadpython-neutronclient-c33b041c0c20b8078dad0f4cdca7c9b2177a122f.tar.gz
Remove case dependancy for user inputs
With the introduction of Lowercase/Uppercase conversion functions in the utils.py, the following patch removes the dependancy of the current code on character casing. utils.convert_to_lowercase is called where the code expects the input to be in lower case while utils.convert_to_uppercase will be called where the code expects the input to be in CAPITAL casing only. Change-Id: I1c5c3c87f343fc2731469b9a0c38d278f6018a11
Diffstat (limited to 'releasenotes/notes/remove-case-dependency-773ccb3237c38e81.yaml')
-rw-r--r--releasenotes/notes/remove-case-dependency-773ccb3237c38e81.yaml7
1 files changed, 7 insertions, 0 deletions
diff --git a/releasenotes/notes/remove-case-dependency-773ccb3237c38e81.yaml b/releasenotes/notes/remove-case-dependency-773ccb3237c38e81.yaml
new file mode 100644
index 0000000..d32f96b
--- /dev/null
+++ b/releasenotes/notes/remove-case-dependency-773ccb3237c38e81.yaml
@@ -0,0 +1,7 @@
+---
+other:
+ - |
+ This patch provides user the support to use
+ any form of casing, thus removing the specific
+ UPPER/lower case inputs required by different
+ neutron CLIs.