[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: python-matplotlib: Fix reST markup error.
From: |
Danny Milosavljevic |
Subject: |
02/02: gnu: python-matplotlib: Fix reST markup error. |
Date: |
Sat, 14 Jan 2017 21:07:36 +0000 (UTC) |
dannym pushed a commit to branch python-tests
in repository guix.
commit 84e0f8c1ed48614a636f4462ec50d52597624861
Author: Danny Milosavljevic <address@hidden>
Date: Sat Jan 14 22:05:35 2017 +0100
gnu: python-matplotlib: Fix reST markup error.
* gnu/packages/python.scm (python-matplotlib)[arguments]:
Fix reST markup error.
---
gnu/packages/python.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 40b6501..a5220e0 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3755,6 +3755,9 @@ backend = TkAgg~%"
(substitute* (find-files "." "conf\\.py")
(("latex_paper_size = 'letter'")
"latex_paper_size = 'a4'"))
+ (substitute* "users/intro.rst"
+ ;; Fix reST markup error (see
<https://github.com/sphinx-doc/sphinx/issues/3044>)
+ (("[[][*][]]") "[#]"))
(mkdir-p html)
(mkdir-p info)
;; The doc recommends to run the 'html' target twice.