diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-14 14:31:36 +0000 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2014-11-14 14:31:36 +0000 |
commit | 131c1552ba1ee6006801480b4e8c18a592c56b62 (patch) | |
tree | 7ebfcb641301f2edae2592ac02f581db088dd96c /sx-question.el | |
parent | 2d3b595a2f1a3f5c63d04c9353fe7ed4cc129df7 (diff) | |
parent | 8d14a6b425d27b7b942f3922d583877ec8b00690 (diff) |
Merge branch 'sx-question-mode' into font-lock
Diffstat (limited to 'sx-question.el')
-rw-r--r-- | sx-question.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sx-question.el b/sx-question.el index 69a4d7f..d15cc80 100644 --- a/sx-question.el +++ b/sx-question.el @@ -54,13 +54,13 @@ (defun sx-question-get-question (site id) "Get the question ID from SITE." - (let ((res (sx-request-make + (let ((res (sx-method-call (format "questions/%s" id) `((site . ,site)) sx-question-browse-filter))) (if (vectorp res) (elt res 0) - (error "Couldn't find question %s in %s" id site)))) + (error "Couldn't find question %S in %S" id site)))) ;;; Question Properties |