From e37f4077c0f1cd09d4102213d4e2a512af471b8d Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 27 Apr 2020 15:02:02 -0700 Subject: [PATCH] Remove 'Serve!' line from serve CLI output It wasn't adding anything, and it was confusing when run in conjunction with the new config directory mode from #731 --- datasette/cli.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/datasette/cli.py b/datasette/cli.py index a93eaf79..919be065 100644 --- a/datasette/cli.py +++ b/datasette/cli.py @@ -350,10 +350,6 @@ def serve( if metadata: metadata_data = parse_metadata(metadata.read()) - click.echo( - "Serve! files={} (immutables={}) on port {}".format(files, immutable, port) - ) - kwargs = dict( immutables=immutable, cache_headers=not debug and not reload,