Skip to content

Commit

Permalink
Fix endings in prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ligurio committed Feb 2, 2024
1 parent 32a3c08 commit 95a2ae0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions md-generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
else:
header = header + " [Screencast](%s)" % entry['screencast']

print(header, "\n")
print(header + "\n")
if screencast:
print(screencast, "\n")
print(screencast + "\n")

if 'info' in entry:
print("%s" % entry['info'])
Expand Down

0 comments on commit 95a2ae0

Please sign in to comment.