diff options
author | Kyle Meyer <kyle@kyleam.com> | 2023-09-17 22:11:36 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2023-09-17 22:11:36 -0400 |
commit | 85f49a9bc8b9bf699a692787820efc0f8aa67545 (patch) | |
tree | cd750afea52c46e30f77000618c4a43eed4a8220 /lisp/org/ob-python.el | |
parent | 2826c26537cd69a77b056a43738bba0c697b36e3 (diff) | |
download | emacs-85f49a9bc8b9bf699a692787820efc0f8aa67545.tar.gz emacs-85f49a9bc8b9bf699a692787820efc0f8aa67545.tar.bz2 emacs-85f49a9bc8b9bf699a692787820efc0f8aa67545.zip |
Update to Org 9.6.9
Diffstat (limited to 'lisp/org/ob-python.el')
-rw-r--r-- | lisp/org/ob-python.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org/ob-python.el b/lisp/org/ob-python.el index c19af0ab331..6c05d1c8b2a 100644 --- a/lisp/org/ob-python.el +++ b/lisp/org/ob-python.el @@ -235,7 +235,7 @@ then create. Return the initialized session." ;; multiple prompts during initialization. (with-current-buffer py-buffer (while (not org-babel-python--initialized) - (org-babel-comint-wait-for-output py-buffer))) + (sleep-for 0 10))) (org-babel-comint-wait-for-output py-buffer)) (setq org-babel-python-buffers (cons (cons session py-buffer) |