From 238385ae3dbcc1ec7971d9b90b18aa8cddade21f Mon Sep 17 00:00:00 2001 From: Jeremy Dormitzer Date: Wed, 8 Jan 2020 16:11:29 -0500 Subject: [PATCH] Fix lola-server dap template syntax --- emacs/init.org | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/emacs/init.org b/emacs/init.org index e19db78..f49bc3b 100755 --- a/emacs/init.org +++ b/emacs/init.org @@ -4244,14 +4244,14 @@ Some functions to make my day job easier. (with-eval-after-load 'dap-mode (dap-register-debug-template "lola-server" - (list :type "python") - :args "bin/start_web.py" - :cwd (expand-file-name "~/lola/lola-server") - :env (extract-vars-from-env-file (expand-file-name "~/lola/lola-server/.env")) - :module nil - :program nil - :request "launch" - :name "lola-server")) + (list :type "python" + :args "bin/start_web.py" + :cwd (expand-file-name "~/lola/lola-server") + :env (extract-vars-from-env-file (expand-file-name "~/lola/lola-server/.env")) + :module nil + :program nil + :request "launch" + :name "lola-server"))) #+END_SRC ** AWS-MFA