Merge "Update comment + six.text_type instead of str for name"

This commit is contained in:
Jenkins
2014-03-13 22:24:17 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 1 deletions

View File

@@ -139,6 +139,7 @@ class Atom(object):
@property
def name(self):
"""A non-unique name for this atom (human readable)."""
return self._name
def __str__(self):

View File

@@ -48,7 +48,7 @@ class Flow(object):
"""
def __init__(self, name):
self._name = str(name)
self._name = six.text_type(name)
@property
def name(self):