Skip to content
This repository has been archived by the owner on Apr 7, 2022. It is now read-only.

Commit

Permalink
Fix problem with string array device property
Browse files Browse the repository at this point in the history
PR #101, Issue #100
  • Loading branch information
vxgmichel authored Mar 1, 2017
2 parents 95b04b7 + fb93a52 commit 92c08e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tango/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -986,6 +986,8 @@ def obj_2_str(obj, tg_type=None):
obj = obj[0]
return str(obj)
# sequence cases
if obj is None:
return ''
return '\n'.join([str(i) for i in obj])


Expand Down

0 comments on commit 92c08e7

Please sign in to comment.