From 6cde5dbd3e078bf3e60faf01aca2488691126364 Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Tue, 6 Jun 2023 14:03:43 -0700 Subject: [PATCH] Fix web server directory hack --- intake/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intake/cli.py b/intake/cli.py index 338ccb5..88b1930 100644 --- a/intake/cli.py +++ b/intake/cli.py @@ -281,7 +281,7 @@ def cmd_run(cmd_args): # 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 - os.environ["INTAKE_DATA"] = args.data + os.environ["INTAKE_DATA"] = str(args.data) try: from intake.app import app