Skip to content

Commit

Permalink
release 6.70 fix crash bug due to using logging instead of print
Browse files Browse the repository at this point in the history
  • Loading branch information
pageauc committed Mar 27, 2018
1 parent 9ba7859 commit aad4a55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions makehtml.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# End of Variable Settings

if not os.path.isdir(web_html_dir):
print("Creating html Folder %s" web_html_dir)
print("Creating html Folder %s" % web_html_dir)
os.makedirs(web_html_dir)

#------------------------------------------------------------------------------
Expand Down Expand Up @@ -116,7 +116,7 @@ def make_web_page(up_html, row_data, dn_html):
# Sync file stat dates of html with jpg file
shutil.copystat(img_path, web_html_path)
if verbose:
print("Saved %s<- %s ->%s" % ( dn_html, web_html_path , up_html))
print("Saved %s<- %s ->%s" % (dn_html, web_html_path , up_html))
else:
if os.path.isfile(web_html_path):
if verbose:
Expand Down

0 comments on commit aad4a55

Please sign in to comment.