1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
From 91133c0a4a5bfd1002365be7cc321be145918f08 Mon Sep 17 00:00:00 2001
From: Michael Schutte <michi@debian.org>
Date: Thu, 8 Oct 2015 11:57:10 -0700
Subject: Use the "roman" module from python-roman instead of the local copy.
Forwarded: not-needed
Last-Update: 2013-07-22
Patch-Name: no-local-roman.diff
---
docutils/parsers/rst/states.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/docutils/parsers/rst/states.py b/docutils/parsers/rst/states.py
index 35de9d2..bc6ac95 100644
--- a/docutils/parsers/rst/states.py
+++ b/docutils/parsers/rst/states.py
@@ -116,7 +116,8 @@ import docutils.parsers.rst
from docutils.parsers.rst import directives, languages, tableparser, roles
from docutils.parsers.rst.languages import en as _fallback_language_module
from docutils.utils import escape2null, unescape, column_width
-from docutils.utils import punctuation_chars, roman, urischemes
+from docutils.utils import punctuation_chars, urischemes
+import roman
class MarkupError(DataError): pass
class UnknownInterpretedRoleError(DataError): pass
|