summaryrefslogtreecommitdiff
path: root/app/node_modules/oktemplate/index.js
diff options
context:
space:
mode:
authorSean Fridman <fridman@mail.sfsu.edu>2015-04-09 00:50:38 -0400
committerSean Fridman <fridman@mail.sfsu.edu>2015-04-09 00:50:38 -0400
commit0f7c28fa2e1fec6b3ce006435cd4bd6c7725d4af (patch)
treefb0aed8b570a29fefa3b88f38a7d575de797b940 /app/node_modules/oktemplate/index.js
parent9578d5d394ddb66dc4f2fd5ea2aaf66fa76ec270 (diff)
Report stringify errors
Diffstat (limited to 'app/node_modules/oktemplate/index.js')
-rw-r--r--app/node_modules/oktemplate/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/node_modules/oktemplate/index.js b/app/node_modules/oktemplate/index.js
index dafe5e6..a37f78e 100644
--- a/app/node_modules/oktemplate/index.js
+++ b/app/node_modules/oktemplate/index.js
@@ -18,7 +18,7 @@ var filters = {
try {
return '<pre>' + stringify(obj) + '</pre>';
} catch (e) {
- return '';
+ return 'Error stringifying';
}
}