Skip to content
Snippets Groups Projects
Commit 3910d6c0 authored by Christoph Knote's avatar Christoph Knote
Browse files

Fix str

parent c4a98f77
No related branches found
No related tags found
No related merge requests found
......@@ -107,7 +107,7 @@ class Variable(collections.UserList):
'''
Return variable description string as it appears in an ICARTT file
'''
return self.splitChar.join( [ self.name, self.units, self.longname ] )
return self.splitChar.join( [ str(self.name), str(self.units), str(self.longname) ] )
def append(self, *argv):
'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment