Skip to content

Commit ec19a17

Browse files
authored
Merge pull request #17 from AndyMoore/master
make acl_list return a a list instead of a string
2 parents 1382097 + 8c2612d commit ec19a17

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

actions/acl_list.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
import json
2-
31
from lib import action
42

53

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

0 commit comments

Comments
 (0)