From 9e8bf5e4c9c4092e80f47d1b412fab124478dbe4 Mon Sep 17 00:00:00 2001 From: Alexander Artemenko Date: Sun, 16 Oct 2016 12:20:01 -0500 Subject: [PATCH] rst.lisp: Fix conflicting symbol imports WRITE-PART should be imported from docutils where it is defined. --- plugins/rst.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/rst.lisp b/plugins/rst.lisp index a18ec10..255932e 100644 --- a/plugins/rst.lisp +++ b/plugins/rst.lisp @@ -6,7 +6,7 @@ (:import-from :coleslaw #:render-text) (:import-from :docutils #:read-rst #:write-part #:register-settings-spec #:visit-node #:write-document) - (:import-from :docutils.writer.html #:html-writer #:write-part) + (:import-from :docutils.writer.html #:html-writer) (:export #:enable)) (in-package :coleslaw-rst)