Rename traceback file; bump version to 0.9.999

This commit is contained in:
The MMGen Project 2018-10-30 15:50:18 +00:00
commit ab06ca4ea8
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 6 additions and 6 deletions

View file

@ -38,7 +38,7 @@ class g(object):
# Constants:
version = '0.9.9a'
version = '0.9.999'
release_date = 'October 2018'
proj_name = 'MMGen'
@ -91,7 +91,6 @@ class g(object):
# test suite:
bogus_wallet_data = u''
traceback_cmd = 'scripts/traceback.py'
debug_utf8 = False
for k in ('win','linux'):

View file

@ -145,9 +145,10 @@ class MMGenPexpect(object):
die(1,red('ERROR: process returned a non-zero exit status ({})'.format(ret)))
else:
if opt.traceback:
cmd,args = g.traceback_cmd,[cmd]+args
cmd_str = g.traceback_cmd + ' ' + cmd_str
# Msg('\ncmd_str: {}'.format(cmd_str))
tc = 'scripts/traceback_run.py'
cmd,args = tc,[cmd]+args
cmd_str = tc + ' ' + cmd_str
# Msg('\ncmd_str: {}'.format(cmd_str))
if opt.popen_spawn:
# PopenSpawn() requires cmd string to be bytes. However, it autoconverts unicode
# input to bytes, though this behavior seems to be undocumented. Setting 'encoding'

View file

@ -150,7 +150,7 @@ opts_data = lambda: {
-v, --verbose Produce more verbose output
-W, --no-dw-delete Don't remove default wallet from data dir after dw tests are done
-X, --exit-after=C Exit after command 'C'
""".format(tbc=g.traceback_cmd,lf=log_file),
""".format(tbc='scripts/traceback_run.py',lf=log_file),
'notes': """
If no command is given, the whole suite of tests is run.