Skip to content

Commit 6aec942

Browse files
committed
revert unrelated changes
1 parent 41d7615 commit 6aec942

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/keri/app/cli/commands/export.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
parser = argparse.ArgumentParser(description='Export key events in CESR stream format',
2020
parents=[Parsery.keystore()])
2121
parser.set_defaults(handler=lambda args: export(args))
22+
parser.add_argument('--alias', '-a', help='human readable alias for the identifier to whom the credential was issued',
23+
required=True)
2224
parser.add_argument("--files", help="export artifacts to individual files keyed off of AIDs or SAIDS, default is "
2325
"stdout", action="store_true")
2426
parser.add_argument("--ends", help="export service end points", action="store_true")

src/keri/app/cli/commands/multisig/notice.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def __init__(self, name, base, alias, bran):
5555
self.alias = alias
5656
self.hby = hby
5757

58-
self.postman = forwarding.Poster(hby=self.hby)
58+
self.postman = forwarding.Postman(hby=self.hby)
5959
doers = [self.hbyDoer, self.postman, doing.doify(self.noticeDo)]
6060

6161
super(NoticeDoer, self).__init__(doers=doers)

0 commit comments

Comments
 (0)