Skip to content

Commit e5b90e9

Browse files
committed
make acl_list return a a list instead of a string
1 parent 1382097 commit e5b90e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

actions/acl_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55

66
class ConsulAclListAction(action.ConsulBaseAction):
77
def run(self):
8-
return (True, json.dumps(self.consul.acl.list()))
8+
return (True, self.consul.acl.list())

0 commit comments

Comments
 (0)