Skip to content

Commit

Permalink
Remove input statements
Browse files Browse the repository at this point in the history
  • Loading branch information
kthoden committed May 27, 2020
1 parent fe59eaf commit 7e7bf7b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/imxml2epub.py
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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")

Expand Down

0 comments on commit 7e7bf7b

Please sign in to comment.