From e1501ec5b83be822870fb1237c48361ec5a4eaea Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Thu, 19 Apr 2018 22:19:20 +0200 Subject: [PATCH] fix bug #1 --- catcli/noder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catcli/noder.py b/catcli/noder.py index deec347..2f0a457 100644 --- a/catcli/noder.py +++ b/catcli/noder.py @@ -54,7 +54,7 @@ class Noder: def clean_storage_attr(self, attr): if not attr: return '' - return ', '.join(attr.splitlines()) + return ', '.join(attr) def get_node(self, top, path): ''' get the node at path '''