-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Labels
Description
I can make this change only after releasing 0.28 - if I make the change earlier than that publish heroku etc will break because they will install the latest release of Datasette which will not understand the -i option.
This is a one-line fix: replace this:
Line 489 in 2ad9d15
| quoted_files = " ".join(map(shlex.quote, file_names)) |
With this: (need to do it for other publishers too though)
quoted_files = " ".join(
["-i {}".format(shlex.quote(file_name)) for file_name in file_names]
)
Reactions are currently unavailable