traceback

This commit is contained in:
Jude Nelson
2016-10-28 17:37:57 -04:00
parent 3c8ba36e5f
commit ba42519fa1

View File

@@ -1,9 +1,11 @@
#!/usr/bin/env python
import scenarios
import traceback
try:
from atlas_network import *
except ImportError:
except ImportError, ie:
traceback.print_exc()
# older version of blockstack core
pass