Fix web server directory hack

This commit is contained in:
Tim Van Baak 2023-06-06 14:03:43 -07:00
parent bf2aefd507
commit 6cde5dbd3e
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ def cmd_run(cmd_args):
# Hack: the web server isn't wired up to take this configuration value # Hack: the web server isn't wired up to take this configuration value
# directly, but it will work to stuff it into the first env checked # directly, but it will work to stuff it into the first env checked
os.environ["INTAKE_DATA"] = args.data os.environ["INTAKE_DATA"] = str(args.data)
try: try:
from intake.app import app from intake.app import app