aboutsummaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-neutron/uuid_wscheck.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-neutron/uuid_wscheck.patch')
-rw-r--r--meta-openstack/recipes-devtools/python/python-neutron/uuid_wscheck.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-neutron/uuid_wscheck.patch b/meta-openstack/recipes-devtools/python/python-neutron/uuid_wscheck.patch
index ba09f7ba..f7050912 100644
--- a/meta-openstack/recipes-devtools/python/python-neutron/uuid_wscheck.patch
+++ b/meta-openstack/recipes-devtools/python/python-neutron/uuid_wscheck.patch
@@ -7,7 +7,7 @@ diff -uNr git.orig/neutron/api/v2/attributes.py git/neutron/api/v2/attributes.py
def _validate_uuid(data, valid_values=None):
if not uuidutils.is_uuid_like(data):
- msg = _("'%s' is not a valid UUID") % data
-+ if data != data.rstrip():
++ if data is not None and data != data.rstrip():
+ msg = _("'%s' is not a valid UUID: trailing whitespace?") % data
+ else:
+ msg = _("'%s' is not a valid UUID") % data
@@ -24,7 +24,7 @@ diff -uNr git.orig/neutron/plugins/cisco/n1kv/n1kv_neutron_plugin.py git/neutron
else:
- LOG.debug(_('%s is not a valid uuid'), segment)
- msg = _("'%s' is not a valid UUID") % segment
-+ if segment != segment.rstrip():
++ if segment is not None and segment != segment.rstrip():
+ msg = _("'%s' is not a valid UUID: trailing whitespace?") % segment
+ else:
+ msg = _("'%s' is not a valid UUID") % segment