Remove print statements

Fixes #223
This commit is contained in:
Timmy Welch 2022-03-20 10:39:53 -07:00
parent 95d167561d
commit 5de2ce65a4
2 changed files with 0 additions and 2 deletions

View File

@ -87,7 +87,6 @@ class ComicInfoXml:
def assign(cix_entry, md_entry):
if md_entry is not None:
print(cix_entry, md_entry)
et_entry = root.find(cix_entry)
if et_entry is not None:
et_entry.text = "{0}".format(md_entry)

View File

@ -630,7 +630,6 @@ class ComicVineTalker(QObject):
for w in col_widths:
fmtstr += " {{:{}}}|".format(w + 1)
width = sum(col_widths) + len(col_widths) * 2
print("width=", width)
table_text = ""
counter = 0
for row in rows: