This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new fe99490 filter_values documentation fix (#5977)
fe99490 is described below
commit fe994900ecc2c400867a5deb6a2bba8ebedab986
Author: Antoan Milkov <[email protected]>
AuthorDate: Tue Dec 18 06:20:46 2018 +0100
filter_values documentation fix (#5977)
---
superset/jinja_context.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/jinja_context.py b/superset/jinja_context.py
index 0af6968..385cec9 100644
--- a/superset/jinja_context.py
+++ b/superset/jinja_context.py
@@ -68,7 +68,7 @@ def filter_values(column, default=None):
Usage example:
SELECT action, count(*) as times
FROM logs
- WHERE action in ( {{ "'" + "','".join(filter_values('action_type')) +
"'" )
+ WHERE action in ( {{ "'" + "','".join(filter_values('action_type')) +
"'" }} )
GROUP BY 1
:param column: column/filter name to lookup