From 050efa339d00b1f7324e30aa8cca48c94bad4f61 Mon Sep 17 00:00:00 2001 From: Tim Richardson Date: Sat, 15 Feb 2014 08:02:53 +1100 Subject: [PATCH] missed a label --- gluon/sqlhtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index d96862e0..e0bfd34d 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -3171,7 +3171,7 @@ class ExportClass(object): raise NotImplementedError class ExporterTSV(ExportClass): - # does not use rows.export_to_csv(represent=True, delimiter='\t') + label = 'TSV' file_ext = "csv" content_type = "text/tab-separated-values"