Skip to content

Commit

Permalink
Fixed missing verbose output from ipex list (#761)
Browse files Browse the repository at this point in the history
Signed-off-by: pSchlarb <p.schlarb@esatus.com>
  • Loading branch information
pSchlarb committed Apr 30, 2024
1 parent ae5ed8d commit 05cbbd5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/keri/app/cli/commands/ipex/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import argparse
import datetime
import os
import json
import sys

from hio import help
Expand Down Expand Up @@ -199,6 +200,12 @@ def grant(self, exn):
if response is not None:
print(f" Response: {responseType} ({response.qb64})")

if self.verbose:
bsad = json.dumps(sad, indent=2)
print(" Full Credential:")
for line in bsad.splitlines():
print(f"\t{line}")

def apply(self, note, exn, pathed):
pass

Expand Down

0 comments on commit 05cbbd5

Please sign in to comment.