From 884faddd575d9615efa867c68a62e56788ade5ec Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Wed, 8 Jan 2014 18:31:50 +0100 Subject: [PATCH] Revert "ob-python.el (org-babel-python-var-to-python): Fix code typo" This reverts commit e88d9d7caf75994c00c1f7c95180aac672696eb2. --- lisp/ob-python.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-python.el b/lisp/ob-python.el index 694e5fc87..145768272 100644 --- a/lisp/ob-python.el +++ b/lisp/ob-python.el @@ -136,7 +136,7 @@ specifying a variable of the same value." (if (equal var 'hline) org-babel-python-hline-to (format - (if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%s\"\"" "%s") + (if (and (stringp var) (string-match "[\n\r]" var)) "\"\"%S\"\"" "%S") var)))) (defun org-babel-python-table-or-string (results) -- 2.11.4.GIT