From 7e7bf7b8cbed4b75dc032a8ed7a083cb4791e8b1 Mon Sep 17 00:00:00 2001 From: kthoden Date: Wed, 27 May 2020 09:09:24 +0200 Subject: [PATCH] Remove input statements --- src/imxml2epub.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/imxml2epub.py b/src/imxml2epub.py index 4359138..9bb8e4e 100755 --- a/src/imxml2epub.py +++ b/src/imxml2epub.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- coding: utf-8; mode: python -*- -# Time-stamp: <2020-05-25 09:30:01 (kthoden)> +# Time-stamp: <2020-05-27 09:09:09 (kthoden)> """ Convert a customized DocBook XML file into a set of files that constitute the contents of an EPUB file. @@ -1380,11 +1380,9 @@ class FootnoteError(Exception): etree.strip_tags(xml_verse, "p") xml_verse.tag = "p" class_attribute = xml_verse.get("class") - input(class_attribute) if class_attribute is not None: class_attribute += " verse" xml_verse.set("class", class_attribute) - input(class_attribute) else: xml_verse.set("class", "verse")