Skip to content

Commit

Permalink
Fix typo in transaction family load exception
Browse files Browse the repository at this point in the history
  • Loading branch information
vaporos committed Jul 11, 2016
1 parent 7b27b8d commit 75a2ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sawtooth/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ def do_submit(args):
txnfamily = importlib.import_module(family_name)
except ImportError:
raise CliException(
"transaction family not found: {}".format(txnfamily))
"transaction family not found: {}".format(family_name))

fake_journal = FakeJournal()
txnfamily.register_transaction_types(fake_journal)
Expand Down

0 comments on commit 75a2ba0

Please sign in to comment.