Browse Source

mmgen-xmrwallet: add missing import of MMGenObject

The MMGen Project 2 years ago
parent
commit
cab144cc7f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      mmgen/tool/help.py
  2. 1 1
      mmgen/xmrwallet.py

+ 1 - 1
mmgen/tool/help.py

@@ -195,7 +195,7 @@ def usage(cmdname=None,exit_val=1):
 			die(1,f'{cmdname!r}: no such tool command')
 	else:
 		from ..ui import do_pager
-		do_pager('\n'.join(gen_tool_usage()))
+		do_pager('\n'.join(gen_tool_usage()) + '\n')
 
 	import sys
 	sys.exit(exit_val)

+ 1 - 1
mmgen/xmrwallet.py

@@ -23,7 +23,7 @@ xmrwallet.py - MoneroWalletOps class
 import os,re,time,json
 from collections import namedtuple
 from .common import *
-from .objmethods import Hilite,InitErrors
+from .objmethods import MMGenObject,Hilite,InitErrors
 from .obj import CoinTxID
 from .seed import SeedID
 from .protocol import init_proto