cli - exception traceback

This commit is contained in:
Kelvin Sherlock 2020-08-02 10:42:15 -04:00
parent 306e42e36e
commit 629f90bb04
1 changed files with 2 additions and 0 deletions

2
cli.py
View File

@ -4,6 +4,7 @@ import io
import argparse
import time
from open_rfork import open_rfork
import traceback
from base import rObject
@ -49,6 +50,7 @@ def execute(filename, scope):
pass
except Exception as e:
print(e)
print(traceback.format_exc())
return False
if __name__ == '__main__':