1
0
mirror of https://github.com/nophead/NopSCADlib.git synced 2025-08-04 06:27:24 +02:00

SHOW_THREADS renamed NOPSCADLIB_SHOW_THREADS for #61

This commit is contained in:
Chris Palmer
2020-03-01 19:10:40 +00:00
parent e32ef88c90
commit c815c1592d
2 changed files with 2 additions and 2 deletions

View File

@@ -23,7 +23,7 @@ import json, os, deps
def check_options(dir = '.'):
global options, options_mtime
options = { "show_threads": str(os.getenv("SHOW_THREADS")) }
options = { "show_threads": str(os.getenv("NOPSCADLIB_SHOW_THREADS")) }
options_fname = dir + '/options.json'
try:
with open(options_fname) as json_file: