Skip to content

Commit

Permalink
Remove un-necessary list convert
Browse files Browse the repository at this point in the history
  • Loading branch information
erichuanggit committed Sep 21, 2015
1 parent 5ee3893 commit 9ca1c4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdc_client/plugins/permission.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def register(self):
def permission_list(self, args):
permissions = self.__get_permissions(self.client.auth['current-user'])
if args.json:
print json.dumps(list(permissions))
print json.dumps(permissions)
return

for permission in sorted(permissions):
Expand Down

0 comments on commit 9ca1c4f

Please sign in to comment.