From 10a34f995c70daa37a8a2aa02c3135a4b023a24c Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 16 Apr 2018 08:38:09 -0700 Subject: [PATCH] Removed rogue print() call --- datasette/app.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/datasette/app.py b/datasette/app.py index 3adb8925..d17f2096 100644 --- a/datasette/app.py +++ b/datasette/app.py @@ -740,9 +740,6 @@ class TableView(RowTableShared): if sort or sort_desc: sort_value = components[0] components = components[1:] - print('sort_varlue = {}, components = {}'.format( - sort_value, components - )) # Figure out the SQL for next-based-on-primary-key first next_by_pk_clauses = []