We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89db0ad commit 8cce24fCopy full SHA for 8cce24f
structure_threader/structure_threader.py
@@ -31,16 +31,16 @@
31
try:
32
import plotter.structplot as sp
33
import sanity_checks.sanity as sanity
34
- import colorer.colorer
+ import colorer.colorer as colorer
35
except ImportError:
36
import structure_threader.plotter.structplot as sp
37
import structure_threader.sanity_checks.sanity as sanity
38
- import structure_threader.colorer.colorer
+ import structure_threader.colorer.colorer as colorer
39
40
# Where are we?
41
CWD = os.getcwd()
42
43
-# Set default log level
+# Set default log level and format
44
logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.INFO)
45
46
0 commit comments