summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgord chung <gord@live.ca>2017-01-04 19:09:43 +0000
committergord chung <gord@live.ca>2017-01-04 19:10:02 +0000
commitd7710ef5d03732ef57d01802f7a9c4c166d17ab4 (patch)
treeffce423162f0897b5108e3fa62a53d63ac480b3c
parentb4bc985324061262c9c5f7f338691376e29a49a3 (diff)
downloadpycadf-d7710ef5d03732ef57d01802f7a9c4c166d17ab4.tar.gz
cleanup string
Change-Id: I5df26a59aa1437777f175f46fd24e59b903e53a2
-rw-r--r--pycadf/identifier.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pycadf/identifier.py b/pycadf/identifier.py
index 5ee6e1c..0b30d93 100644
--- a/pycadf/identifier.py
+++ b/pycadf/identifier.py
@@ -57,6 +57,6 @@ def is_valid(value):
except (ValueError, TypeError):
if not isinstance(value, six.string_types) or not value:
return False
- warnings.warn('Invalid uuid. To ensure interoperability, identifiers'
+ warnings.warn('Invalid uuid. To ensure interoperability, identifiers '
'should be a valid uuid.')
return True